diff options
author | jlam <jlam> | 2001-06-29 04:54:49 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-06-29 04:54:49 +0000 |
commit | 248e653126f88e8826180e58af0f27de58c1fc01 (patch) | |
tree | 0f7f2aeb7ecca34d147342f726930d3cafaae39e /www/sitecopy | |
parent | aaf80c5bfdf5ecb0c919823c1b2442451e1dec77 (diff) | |
download | pkgsrc-248e653126f88e8826180e58af0f27de58c1fc01.tar.gz |
USE_CONFIG_WRAPPER is automatically set if USE_BUILDLINK_ONLY is defined,
so remove it from package Makefiles. Also move the inclusion of the
buildlink.mk files to the end of the Makefile to just before bsd.pkg.mk
to ensure that any Makefile settings occur before the buildlink.mk files.
Diffstat (limited to 'www/sitecopy')
-rw-r--r-- | www/sitecopy/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/www/sitecopy/Makefile b/www/sitecopy/Makefile index 80b93c7fad7..98f0ef5ad15 100644 --- a/www/sitecopy/Makefile +++ b/www/sitecopy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/06/19 04:55:49 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2001/06/29 04:54:56 jlam Exp $ DISTNAME= sitecopy-0.10.15 CATEGORIES= www @@ -8,22 +8,14 @@ MAINTAINER= jlam@netbsd.org HOMEPAGE= http://www.lyra.org/sitecopy/ COMMENT= utility for synchronizing remote and local web sites -#USE_SSL= # defined -#USE_LIBINTL= # defined USE_GMAKE= # defined USE_BUILDLINK_ONLY= # defined -USE_CONFIG_WRAPPER= # defined GNU_CONFIGURE= # defined CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_DIR} CONFIGURE_ARGS+= --with-included-neon CONFIGURE_ARGS+= --enable-libxml -.include "../../devel/gettext-lib/buildlink.mk" -.include "../../devel/libgetopt/buildlink.mk" -.include "../../security/openssl/buildlink.mk" -.include "../../textproc/libxml/buildlink.mk" - # The build process doesn't correctly find the header for GNU fnmatch, which # is provided in ${WRKSRC}/lib. Help the compiler by linking the header # to ${WRKSRC} and explicitly passing -I. to the compiler. @@ -34,4 +26,8 @@ pre-build: ${RM} -f ${WRKSRC}/fnmatch.h ${LN} -sf ${WRKSRC}/lib/fnmatch.h ${WRKSRC}/fnmatch.h +.include "../../devel/gettext-lib/buildlink.mk" +.include "../../devel/libgetopt/buildlink.mk" +.include "../../security/openssl/buildlink.mk" +.include "../../textproc/libxml/buildlink.mk" .include "../../mk/bsd.pkg.mk" |