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 /print/acroread/Makefile | |
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 'print/acroread/Makefile')
-rw-r--r-- | print/acroread/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/print/acroread/Makefile b/print/acroread/Makefile index 2518d7ce904..e77b4bda736 100644 --- a/print/acroread/Makefile +++ b/print/acroread/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2005/07/09 17:34:42 kristerw Exp $ +# $NetBSD: Makefile,v 1.44 2005/12/05 20:50:52 rillig Exp $ DISTNAME= acroread # Overridden below PKGNAME= acroread-4.05 @@ -33,20 +33,20 @@ ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-1.4[L-Z]-sparc \ .if ${OPSYS} == "NetBSD" . if (${MACHINE_ARCH} == "i386") -DEPENDS= suse_x11>=6.1:../../emulators/${SUSE_DIR_PREFIX}_x11 +DEPENDS+= suse_x11>=6.1:../../emulators/${SUSE_DIR_PREFIX}_x11 DISTNAME= linux-ar-405 PLATFORM= intellinux WRKSRC= ${WRKDIR}/ILINXR.install . elif (${MACHINE_ARCH} == "alpha") . if !exists(/emul/osf1/sbin/loader) -PKG_FAIL_REASON= '${PKGNAME} requires Digital UNIX libraries - see compat_osf1(8)' +PKG_FAIL_REASON+= '${PKGNAME} requires Digital UNIX libraries - see compat_osf1(8)' . endif DISTNAME= fdec-rs-405 PLATFORM= alphaosf WRKSRC= ${WRKDIR}/AOSFRS.install . elif (${MACHINE_ARCH} == "sparc") . if !exists(/emul/svr4/usr/lib/ld.so) -PKG_FAIL_REASON= '${PKGNAME} requires Solaris libraries - see compat_svr4(8)' +PKG_FAIL_REASON+= '${PKGNAME} requires Solaris libraries - see compat_svr4(8)' . endif DISTNAME= sunsparc-rs-405 WRKSRC= ${WRKDIR}/SSOLRS.install @@ -64,13 +64,13 @@ WRKSRC= ${WRKDIR}/SSOLRS.install PLATFORM= sparcsolaris . endif # i86pc - # Solaris sparc + x86: -PREPEND_PATH= /bin # for "ed" +# Solaris sparc + x86: +PREPEND_PATH+= /bin # for "ed" post-patch: ${CHMOD} -R o+rwx ${WRKSRC} .endif # SunOS -PLIST_SUBST+= PLATFORM=${PLATFORM} +PLIST_SUBST+= PLATFORM=${PLATFORM:Q} NS_PLUGINS_DIR= ${PREFIX}/lib/netscape/plugins |