diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | 5ec134d67dbba7a354689af359fb4dd92bc8cbec (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /net/citrix_ica | |
parent | 9d13f62cc158ce4d29412c1798882c83849d448b (diff) | |
download | pkgsrc-5ec134d67dbba7a354689af359fb4dd92bc8cbec.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 'net/citrix_ica')
-rw-r--r-- | net/citrix_ica/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/citrix_ica/Makefile b/net/citrix_ica/Makefile index 5df344fa8e9..f7fa29acefa 100644 --- a/net/citrix_ica/Makefile +++ b/net/citrix_ica/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2005/09/27 16:09:50 wiz Exp $ +# $NetBSD: Makefile,v 1.24 2005/12/05 20:50:44 rillig Exp $ # # A default so lintpkgsrc is happy, overridden below @@ -35,7 +35,7 @@ PKGNAME= citrix_ica-7.00.77757 # see http://www.citrix.com/download/unix-downloads.htm .if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "i386" -DEPENDS= suse_x11>=6.4:../../emulators/${SUSE_DIR_PREFIX}_x11 +DEPENDS+= suse_x11>=6.4:../../emulators/${SUSE_DIR_PREFIX}_x11 .endif LICENSE= citrix_ica-license @@ -46,14 +46,14 @@ NO_SRC_ON_CDROM= ${RESTRICTED} NO_BIN_ON_CDROM= ${RESTRICTED} WRKSRC= ${WRKDIR} -DIST_SUBDIR= ${PKGNAME} +DIST_SUBDIR= ${PKGNAME_NOREV} CDIR= ${PREFIX}/lib/ICAClient BINDIR= ${PREFIX}/bin .if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "sparc" . if !exists(/emul/svr4/usr/lib/ld.so) -PKG_FAIL_REASON= "${PKGNAME} requires SVR4 compability - see compat_svr4(8)" +PKG_FAIL_REASON+= "${PKGNAME} requires SVR4 compability - see compat_svr4(8)" . endif .endif |