diff options
author | jlam <jlam> | 2005-06-01 20:07:59 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-06-01 20:07:59 +0000 |
commit | 9246b8fa5d840499a559463c54cfa42c8745cb94 (patch) | |
tree | 77aa2e325b82a73660278dbb13238e6aac0adca7 /print | |
parent | cd724154203ef64191ed5623075402fa6333c0aa (diff) | |
download | pkgsrc-9246b8fa5d840499a559463c54cfa42c8745cb94.tar.gz |
Remove mk/autoconf.mk and mk/automake.mk and replace their usage with
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or
"automake14". Also, we don't need to call the auto* tools via
${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care
to symlink the correct tool to the correct name, so we can just use
aclocal, autoconf, etc.
Diffstat (limited to 'print')
-rw-r--r-- | print/cups/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index c0753c3e24f..e7e7737834c 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.93 2005/05/31 11:24:32 dillo Exp $ +# $NetBSD: Makefile,v 1.94 2005/06/01 20:08:01 jlam 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: @@ -33,7 +33,7 @@ UNLIMIT_RESOURCES= datasize memorysize USE_LANGUAGES= c c++ # pdftops is a C++ application USE_PKGINSTALL= yes USE_PKGLOCALEDIR= yes -USE_TOOLS+= gmake +USE_TOOLS+= autoconf gmake USE_LIBTOOL= yes INSTALL_TARGET= installcups @@ -112,10 +112,9 @@ OWN_DIRS_PERMS+= ${CUPS_REQUESTS}/tmp ${CUPS_USER} ${CUPS_GROUP} 1770 .include "../../graphics/tiff/buildlink3.mk" .include "../../net/openslp/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" -.include "../../mk/autoconf.mk" pre-configure: - cd ${WRKSRC} && ${AUTOCONF} + cd ${WRKSRC} && autoconf post-build: @${SED} ${FILES_SUBST_SED} ${FILESDIR}/cups.pam > ${WRKDIR}/cups.pam |