diff options
author | jlam <jlam@pkgsrc.org> | 2005-08-10 22:57:24 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-08-10 22:57:24 +0000 |
commit | 8a98b824919c92bc14bf40ebc53a118c2634e9b6 (patch) | |
tree | 05a5a935649c6d54b12a6e3ca9c9dc075b79e777 /sysutils/gamin | |
parent | 57f87df5e58d8259d3b1a436ed20424636888acc (diff) | |
download | pkgsrc-8a98b824919c92bc14bf40ebc53a118c2634e9b6.tar.gz |
Don't cause the gamin libraries to be linked against -lintl (and possibly
-liconv) as they're not used in the libraries.
Diffstat (limited to 'sysutils/gamin')
-rw-r--r-- | sysutils/gamin/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysutils/gamin/Makefile b/sysutils/gamin/Makefile index b16711e215c..be4256ad6aa 100644 --- a/sysutils/gamin/Makefile +++ b/sysutils/gamin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2005/08/10 21:01:51 jlam Exp $ +# $NetBSD: Makefile,v 1.2 2005/08/10 22:57:24 jlam Exp $ DISTNAME= gamin-0.1.5 CATEGORIES= sysutils @@ -17,6 +17,11 @@ CONFIGURE_ARGS+= --disable-gtk-doc CONFIGURE_ARGS+= --without-threads CONFIGURE_ARGS+= --with-html-dir=${DOCDIR} +# glib2/buildlink3.mk pulls in gettext-lib/buildlink3.mk, but the gamin +# libraries don't need to be linked against -lintl automatically. +# +BROKEN_GETTEXT_DETECTION= no + PKG_SYSCONFSUBDIR= gamin DOCDIR= ${PREFIX}/share/doc/gamin |