diff options
author | grant <grant@pkgsrc.org> | 2002-12-02 03:09:01 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2002-12-02 03:09:01 +0000 |
commit | d4b0776acefa2e9a011beb9597db5c2cc3867585 (patch) | |
tree | 65c8a631835f50eb20b03da74249a1f69178c4e8 /www | |
parent | cfa2daa14c49bd406e743019e0df5c1cdd9e4c65 (diff) | |
download | pkgsrc-d4b0776acefa2e9a011beb9597db5c2cc3867585.tar.gz |
If we include buildlink2.mk files, we need to turn on USE_BUILDLINK2
:-)
Fixes openssl dependancy problem on platforms which do not have a
suitable (read: secure) openssl in the base system.
Some whitespace cleanup.
Diffstat (limited to 'www')
-rw-r--r-- | www/squid/Makefile | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/www/squid/Makefile b/www/squid/Makefile index 641a8597728..d1195e2f021 100644 --- a/www/squid/Makefile +++ b/www/squid/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.73 2002/11/25 14:46:14 taca Exp $ +# $NetBSD: Makefile,v 1.74 2002/12/02 03:09:01 grant Exp $ DISTNAME= squid-2.5.STABLE1 PKGNAME= squid-2.5.1 @@ -46,22 +46,24 @@ PKG_SYSCONFSUBDIR?= squid .include "../../mk/bsd.prefs.mk" -GNU_CONFIGURE= YES -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} \ - --localstatedir=/var/squid \ - ${SQUID_CONFIGURE_ARGS} -CONFIGURE_ENV+= PERL=${PERL5} +GNU_CONFIGURE= # defined +USE_BUILDLINK2= # defined +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} \ + --localstatedir=/var/squid \ + ${SQUID_CONFIGURE_ARGS} +CONFIGURE_ENV+= PERL=${PERL5} -BUILD_DEFS+= SQUID_CONFIGURE_ARGS -MAKE_ENV+= INSTALL_SCRIPT="${INSTALL_SCRIPT}" PKG_PREFIX="${PREFIX}" -PLIST_SRC= ${WRKDIR}/PLIST -WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//} -RCD_SCRIPTS= squid +BUILD_DEFS+= SQUID_CONFIGURE_ARGS +MAKE_ENV+= INSTALL_SCRIPT="${INSTALL_SCRIPT}" +MAKE_ENV+= PKG_PREFIX="${PREFIX}" +PLIST_SRC= ${WRKDIR}/PLIST +WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//} +RCD_SCRIPTS= squid -CONF_FILES+= ${PREFIX}/share/examples/squid/mime.conf \ - ${PKG_SYSCONFDIR}/mime.conf -CONF_FILES+= ${PREFIX}/share/examples/squid/squid.conf \ - ${PKG_SYSCONFDIR}/squid.conf +CONF_FILES+= ${PREFIX}/share/examples/squid/mime.conf \ + ${PKG_SYSCONFDIR}/mime.conf +CONF_FILES+= ${PREFIX}/share/examples/squid/squid.conf \ + ${PKG_SYSCONFDIR}/squid.conf # Configuration options which can be overwritten by the user. SQUID_CONFIGURE_ARGS?= --disable-internal-dns \ |