Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Oct 2016 09:03:59 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r424502 - head/www/wsdlpull
Message-ID:  <201610230903.u9N93x0t090227@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Sun Oct 23 09:03:58 2016
New Revision: 424502
URL: https://svnweb.freebsd.org/changeset/ports/424502

Log:
  - Switch to USES=localbase
  - Switch to options helpers

Modified:
  head/www/wsdlpull/Makefile

Modified: head/www/wsdlpull/Makefile
==============================================================================
--- head/www/wsdlpull/Makefile	Sun Oct 23 08:40:50 2016	(r424501)
+++ head/www/wsdlpull/Makefile	Sun Oct 23 09:03:58 2016	(r424502)
@@ -10,32 +10,30 @@ MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	C++ WSDL Parser
 
-LICENSE=	LGPL21
+LICENSE=	LGPL21 # code says LGPL20+ and MIT though
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libcurl.so:ftp/curl
 
-CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib
-USES=		libtool
-USE_LDCONFIG=	yes
+USES=		libtool localbase
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip
+USE_LDCONFIG=	yes
 
 OPTIONS_DEFINE=	DOCS
 
 post-patch:
-	${REINPLACE_CMD} -e '/-O2 -Wall/d' ${WRKSRC}/configure
-	${REINPLACE_CMD} \
+	@${REINPLACE_CMD} -e '/-O2 -Wall/d' ${WRKSRC}/configure
+	@${REINPLACE_CMD} \
 		-e '/SUBDIRS = / s| docs||' \
 		-e '/^install-data-am:/ s| install-docsDATA||' \
 			${WRKSRC}/Makefile.in
 # Do not install wsdlpull-config.1 for the absence of wsdlpull-config
-	${REINPLACE_CMD} \
+	@${REINPLACE_CMD} \
 		-e '/^man_MANS = / s| wsdlpull-config.1||' \
 			${WRKSRC}/man/Makefile.in
 
-post-install:
+post-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	cd ${WRKSRC}/ && ${INSTALL_DATA} README wsdlpull.html ${STAGEDIR}${DOCSDIR}
 



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