diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2013-11-25 19:33:49 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2013-11-25 19:33:49 +0800 |
commit | 84c1f9a152f9508ca478730380f934acf8281c4b (patch) | |
tree | 23809707998df161c1d9547999293de21eabc9f2 /ftp/curlpp | |
parent | 8d4c6b5d04f30d3d8edd905493387644d690b257 (diff) | |
download | freebsd-ports-gnome-84c1f9a152f9508ca478730380f934acf8281c4b.tar.gz freebsd-ports-gnome-84c1f9a152f9508ca478730380f934acf8281c4b.tar.zst freebsd-ports-gnome-84c1f9a152f9508ca478730380f934acf8281c4b.zip |
- Add LICENSE
- Support STAGEDIR
Diffstat (limited to 'ftp/curlpp')
-rw-r--r-- | ftp/curlpp/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ftp/curlpp/Makefile b/ftp/curlpp/Makefile index 9441bc6a197c..8e57838cb878 100644 --- a/ftp/curlpp/Makefile +++ b/ftp/curlpp/Makefile @@ -10,6 +10,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= sunpoet@FreeBSD.org COMMENT= C++ wrapper for libcurl +LICENSE= MIT + LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl OPTIONS_DEFINE= BOOST DOCS EXAMPLES @@ -26,7 +28,6 @@ BOOST_RUN_DEPENDS= ${BOOST_BUILD_DEPENDS} BOOST_CONFIGURE_ON= --with-boost=${LOCALBASE} BOOST_CONFIGURE_OFF= --without-boost -NO_STAGE= yes .include <bsd.port.options.mk> post-patch: @@ -34,12 +35,12 @@ post-patch: post-install: .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR}/ - ${INSTALL_DATA} ${WRKSRC}/doc/guide.pdf ${DOCSDIR}/ + ${MKDIR} ${STAGEDIR}${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/doc/guide.pdf ${STAGEDIR}${DOCSDIR}/ .endif .if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR}/ - ${INSTALL_DATA} ${WRKSRC}/examples/README ${WRKSRC}/examples/example*.cpp ${EXAMPLESDIR}/ + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ + ${INSTALL_DATA} ${WRKSRC}/examples/README ${WRKSRC}/examples/example*.cpp ${STAGEDIR}${EXAMPLESDIR}/ .endif .include <bsd.port.mk> |