a020ed9056
have been converted to USE_BUILDLINK2.
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2002/08/25 21:52:20 jlam Exp $
|
|
|
|
DISTNAME= sitecopy-0.11.4
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.lyra.org/sitecopy/
|
|
|
|
MAINTAINER= jlam@netbsd.org
|
|
HOMEPAGE= http://www.lyra.org/sitecopy/
|
|
COMMENT= utility for synchronizing remote and local web sites
|
|
|
|
USE_GMAKE= # defined
|
|
USE_BUILDLINK2= # defined
|
|
BUILD_USES_MSGFMT= # defined
|
|
|
|
GNU_CONFIGURE= # defined
|
|
CONFIGURE_ARGS+= --with-ssl=${SSLBASE}
|
|
CONFIGURE_ARGS+= --with-included-neon
|
|
CONFIGURE_ARGS+= --enable-libxml
|
|
|
|
LIBS+= ${LIBGETOPT}
|
|
|
|
# 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.
|
|
#
|
|
CFLAGS+= -I.
|
|
|
|
pre-build:
|
|
${RM} -f ${WRKSRC}/fnmatch.h
|
|
${LN} -sf ${WRKSRC}/lib/fnmatch.h ${WRKSRC}/fnmatch.h
|
|
|
|
.include "../../devel/gettext-lib/buildlink2.mk"
|
|
.include "../../devel/libgetopt/buildlink2.mk"
|
|
.include "../../security/openssl/buildlink2.mk"
|
|
.include "../../textproc/libxml/buildlink2.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|