From owner-svn-ports-all@freebsd.org Sun Oct 23 09:04:00 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1999EC1E3F1; Sun, 23 Oct 2016 09:04:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBE546D; Sun, 23 Oct 2016 09:03:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9N93xEg090228; Sun, 23 Oct 2016 09:03:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9N93x0t090227; Sun, 23 Oct 2016 09:03:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201610230903.u9N93x0t090227@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 23 Oct 2016 09:03:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424502 - head/www/wsdlpull X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 09:04:00 -0000 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}