diff options
author | sbd <sbd@pkgsrc.org> | 2010-05-20 09:35:58 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2010-05-20 09:35:58 +0000 |
commit | 4d86209bdf5638017da9511e78683d822ba17ff7 (patch) | |
tree | 77e7d549592ed00bf5825d59a9f8cfbf696e7b53 /print/cups/Makefile | |
parent | e8f872795aa494cc3fef28e65fc7978f8d17a5e5 (diff) | |
download | pkgsrc-4d86209bdf5638017da9511e78683d822ba17ff7.tar.gz |
Cleanup of the Makefile and options.mk:
* Remove unneeded ${VARS} variable.
* add a blank line after PKGREVISON for readability.
* remove unneeded --with-rcdir and --enable-gnutls=no from CONFIGURE_ARGS.
* reorder part of CONFIGURE_ARGS for a little more readability.
* explicitly enable jpeg/png/tiff.
* change a LOCALBASE reference to PREFIX (pkglint warning).
* remove write permission from a set-uid program (checkperms warning).
* add "set -e" in front of shell for loops (pkglint warning)
* explicitly enable/disable dnssd and gssapi in options.
Diffstat (limited to 'print/cups/Makefile')
-rw-r--r-- | print/cups/Makefile | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index 0760368f9de..757af0b1bfb 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -1,16 +1,16 @@ -# $NetBSD: Makefile,v 1.150 2010/05/20 08:05:29 sbd Exp $ +# $NetBSD: Makefile,v 1.151 2010/05/20 09:35:58 sbd Exp $ # # The CUPS author is very good about taking back changes into the main # CUPS distribution. The correct place to send patches or bug-fixes is: # cups-bugs@cups.org. DISTNAME= cups-${DIST_VERS}-source -PKGNAME= cups-${VERS} +PKGNAME= cups-${DIST_VERS:S/-/./g} BASE_VERS= 1.3.11 DIST_VERS= ${BASE_VERS} DIST_SUBDIR= cups-${DIST_VERS} # temp fix for updated distfile -VERS= ${DIST_VERS:S/-/./g} PKGREVISION= 3 + CATEGORIES= print MASTER_SITES= http://ftp.easysw.com/pub/cups/${BASE_VERS}/ \ ftp://ftp.easysw.com/pub/cups/${BASE_VERS}/ \ @@ -45,17 +45,18 @@ CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q} CONFIGURE_ARGS+= --with-cachedir=${VARBASE:Q}/cache/cups CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/cups CONFIGURE_ARGS+= --with-serverbindir=${PREFIX}/libexec/cups -CONFIGURE_ARGS+= --with-rcdir=${RCD_SCRIPTS_DIR:Q} CONFIGURE_ARGS+= --with-cups-user=${CUPS_USER:Q} CONFIGURE_ARGS+= --with-cups-group=${CUPS_GROUP:Q} -CONFIGURE_ARGS+= --with-manext=bsd -CONFIGURE_ARGS+= --without-perl -CONFIGURE_ARGS+= --without-icondir -CONFIGURE_ARGS+= --without-menudir CONFIGURE_ARGS+= --enable-libtool +CONFIGURE_ARGS+= --enable-jpeg +CONFIGURE_ARGS+= --enable-png +CONFIGURE_ARGS+= --enable-tiff CONFIGURE_ARGS+= --enable-ssl -CONFIGURE_ARGS+= --enable-gnutls=no CONFIGURE_ARGS+= --enable-openssl +CONFIGURE_ARGS+= --with-manext=bsd +CONFIGURE_ARGS+= --without-icondir +CONFIGURE_ARGS+= --without-menudir +CONFIGURE_ARGS+= --without-perl CONFIGURE_ARGS+= --without-php CONFIGURE_ARGS+= --without-python CONFIGURE_ARGS+= --without-java @@ -121,7 +122,7 @@ SUBST_STAGE.paths= post-patch SUBST_CLASSES+= rpathfix SUBST_FILES.rpathfix= cups-config.in SUBST_MESSAGE.rpathfix= Adding rpath to cups-config. -SUBST_SED.rpathfix= -e 's|@EXPORT_LDFLAGS@|${COMPILER_RPATH_FLAG}${LOCALBASE}/lib|g' +SUBST_SED.rpathfix= -e 's|@EXPORT_LDFLAGS@|${COMPILER_RPATH_FLAG}${PREFIX}/lib|g' SUBST_STAGE.rpathfix= post-patch INSTALLATION_DIRS= ${DOCDIR} ${EGDIR} @@ -134,11 +135,12 @@ post-extract: ${CP} ${FILESDIR}/cups.pam ${WRKDIR}/cups.pam post-install: - for file in LICENSE.txt README.txt; do \ + ${RUN} chmod -r ${DESTDIR}${PREFIX}/bin/lppasswd + set -e; for file in LICENSE.txt README.txt; do \ ${INSTALL_DATA} ${WRKSRC}/$${file} \ ${DESTDIR}${DOCDIR}/$${file}; \ done - cd ${WRKSRC}/conf; for file in *.conf mime.convs mime.types; do \ + set -e; cd ${WRKSRC}/conf; for file in *.conf mime.convs mime.types; do \ case $${file} in \ pam.conf) \ ;; \ |