Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Nov 2013 11:33:50 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r334837 - head/ftp/curlpp
Message-ID:  <201311251133.rAPBXoYt014107@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311251133.rAPBXoYt014107>