pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/retrie
Module Name: pkgsrc
Committed By: pho
Date: Sat Feb 26 08:26:12 UTC 2022
Modified Files:
pkgsrc/devel/retrie: Makefile
Log Message:
devel/retrie: Link retrie with static Haskell libraries
Also generate shell completion scripts with optparse-applicative.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/retrie/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/retrie/Makefile
diff -u pkgsrc/devel/retrie/Makefile:1.2 pkgsrc/devel/retrie/Makefile:1.3
--- pkgsrc/devel/retrie/Makefile:1.2 Sat Feb 26 03:58:13 2022
+++ pkgsrc/devel/retrie/Makefile Sat Feb 26 08:26:12 2022
@@ -1,14 +1,26 @@
-# $NetBSD: Makefile,v 1.2 2022/02/26 03:58:13 pho Exp $
+# $NetBSD: Makefile,v 1.3 2022/02/26 08:26:12 pho Exp $
DISTNAME= retrie-1.2.0.1
PKGNAME= ${DISTNAME}
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= devel
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
COMMENT= Powerful, easy-to-use codemodding tool for Haskell
LICENSE= mit
+# If retrie is to be linked dynamically, it will depend on more than 80
+# shared objects and the dynamic linker will spend too much time to resolve
+# symbols on startup. This is unacceptable because retrie tends to be
+# launched very frequently by editors and IDEs. This wastes storage, but
+# time is more expensive than disks.
+HASKELL_ENABLE_DYNAMIC_EXECUTABLE= no
+
+# retrie is built with optparse-applicative, and can generate shell
+# completion scripts automatically.
+.include "../../devel/hs-optparse-applicative/application.mk"
+
+# lib:retrie
.include "../../devel/hs-ansi-terminal/buildlink3.mk"
.include "../../devel/hs-async/buildlink3.mk"
.include "../../devel/hs-data-default/buildlink3.mk"
@@ -18,7 +30,10 @@ LICENSE= mit
.include "../../devel/hs-random-shuffle/buildlink3.mk"
.include "../../devel/hs-syb/buildlink3.mk"
.include "../../devel/hs-unordered-containers/buildlink3.mk"
+
+# exe:retrie
.include "../../devel/hs-ghc-paths/buildlink3.mk"
.include "../../devel/hs-haskell-src-exts/buildlink3.mk"
+
.include "../../mk/haskell.mk"
.include "../../mk/bsd.pkg.mk"
Home |
Main Index |
Thread Index |
Old Index