diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-11-25 11:33:49 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-11-25 11:33:49 +0000 |
commit | 074a23b8cccdbb67ee859851e80d22b23005d789 (patch) | |
tree | 23809707998df161c1d9547999293de21eabc9f2 /ftp | |
parent | 116261cbbc3974d7aa049c29c07c24525b915324 (diff) | |
download | ports-074a23b8cccdbb67ee859851e80d22b23005d789.tar.gz ports-074a23b8cccdbb67ee859851e80d22b23005d789.zip |
Notes
Diffstat (limited to 'ftp')
-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> |