svn commit: r334837 - head/ftp/curlpp
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Mon Nov 25 11:33:50 UTC 2013
Author: sunpoet
Date: Mon Nov 25 11:33:49 2013
New Revision: 334837
URL: http://svnweb.freebsd.org/changeset/ports/334837
Log:
- Add LICENSE
- Support STAGEDIR
Modified:
head/ftp/curlpp/Makefile
Modified: head/ftp/curlpp/Makefile
==============================================================================
--- head/ftp/curlpp/Makefile Mon Nov 25 11:33:45 2013 (r334836)
+++ head/ftp/curlpp/Makefile Mon Nov 25 11:33:49 2013 (r334837)
@@ -10,6 +10,8 @@ MASTER_SITES= GOOGLE_CODE
MAINTAINER= sunpoet at 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>
More information about the svn-ports-head
mailing list