pkgsrc/www/curl/Makefile
shell 72d0dc8ad5 Updated to curl, from 7.9.6 to 7.9.7
Changes since 7.9.6 :
- More -(option) support
- Documentation updated
- little bug fixed and preformance improved

(please see CHANGES for more)
2002-06-10 01:32:37 +00:00

41 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.19 2002/06/10 01:32:37 shell Exp $
DISTNAME= curl-7.9.7
CATEGORIES= www
MASTER_SITES= http://curl.haxx.se/download/ \
ftp://ftp.sunet.se/pub/www/utilities/curl/ \
ftp://ftp.rge.com/pub/networking/curl/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://curl.haxx.se/
COMMENT= client that groks URLs
# list it into IPv6-ready packages
BUILD_DEFS+= USE_INET6
USE_BUILDLINK_ONLY= yes
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_DIR}
# This causes curl-config not to be regenerated during build-time as it was
# already created at configure-time.
#
AUTOMAKE_POST_PATTERNS+= curl-config
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/curl
for _f in MANUAL TheArtOfHttpScripting FAQ; do \
${INSTALL_DATA} ${WRKSRC}/docs/$${_f} \
${PREFIX}/share/doc/curl/${_f}; \
done
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/curl
for _f in ${WRKSRC}/docs/examples/*.c ; do \
${INSTALL_DATA} $${_f} ${PREFIX}/share/examples/curl; \
done
${SED} '/php/d' ${WRKSRC}/docs/examples/README > \
${PREFIX}/share/examples/curl/README
.include "../../security/openssl/buildlink.mk"
.include "../../mk/bsd.pkg.mk"