diff options
author | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
commit | b4f920543059af038598712771c3211999ef42a6 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /chat/centericq | |
parent | 5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff) | |
download | pkgsrc-b4f920543059af038598712771c3211999ef42a6.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'chat/centericq')
-rw-r--r-- | chat/centericq/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chat/centericq/Makefile b/chat/centericq/Makefile index f226a072583..e90df3e215b 100644 --- a/chat/centericq/Makefile +++ b/chat/centericq/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2005/12/03 17:04:23 adrianp Exp $ +# $NetBSD: Makefile,v 1.56 2005/12/05 20:49:52 rillig Exp $ # DISTNAME= centericq-4.21.0 @@ -19,13 +19,13 @@ USE_LANGUAGES= c c++ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-ssl --with-openssl=${SSLBASE} CONFIGURE_ARGS+= --with-gpgme=${BUILDLINK_PREFIX.gpgme}/bin/gpgme-config -LIBS= ${LDFLAGS} +LIBS+= ${LDFLAGS} REPLACE_PERL= misc/cicqconv INCOMPAT_CURSES+= NetBSD-1.[45]*-* NetBSD-1.6-* NetBSD-1.6.[1-9]-* INCOMPAT_CURSES+= NetBSD-1.6_*-* NetBSD-1.6.[1-9]_*-* NetBSD-1.6[A-T]-* -INCOMPAT_CURSES+= NetBSD-2.* NetBSD-3.* # see PR 29060 +INCOMPAT_CURSES+= NetBSD-2.*-* NetBSD-3.*-* # see PR 29060 .include "../../mk/bsd.prefs.mk" |