svn commit: r415183 - head/net/xmlrpc-epi

Dmitry Marakasov amdmi3 at FreeBSD.org
Sat May 14 09:03:38 UTC 2016


Author: amdmi3
Date: Sat May 14 09:03:36 2016
New Revision: 415183
URL: https://svnweb.freebsd.org/changeset/ports/415183

Log:
  - Switch to USES=localbase
  - Switch to options helpers
  - Switch to new test framework

Modified:
  head/net/xmlrpc-epi/Makefile

Modified: head/net/xmlrpc-epi/Makefile
==============================================================================
--- head/net/xmlrpc-epi/Makefile	Sat May 14 08:54:49 2016	(r415182)
+++ head/net/xmlrpc-epi/Makefile	Sat May 14 09:03:36 2016	(r415183)
@@ -15,10 +15,9 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libexpat.so:textproc/expat2
 
-USES=		gmake iconv libtool tar:bzip2
+USES=		gmake iconv libtool localbase tar:bzip2
 USE_LDCONFIG=	yes
-CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
+LDFLAGS+=	${ICONV_LIB}
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--program-transform="s|^|xre-|"
 INSTALL_TARGET=	install-strip
@@ -32,11 +31,11 @@ CONFLICTS=	xmlrpc-c-0.* xmlrpc-c-devel-[
 
 OPTIONS_DEFINE=	DOCS
 
-post-install:
+post-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
 
-regression-test:
+do-test:
 .for tm in ${METHODS}
 	cd ${WRKSRC}/sample && ./sample -method method_${tm}
 .endfor


More information about the svn-ports-head mailing list