From owner-svn-ports-head@freebsd.org Sat Oct 21 08:12:48 2017 Return-Path: Delivered-To: svn-ports-head@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 1C040E50B5A; Sat, 21 Oct 2017 08:12:48 +0000 (UTC) (envelope-from pi@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 DE0347C339; Sat, 21 Oct 2017 08:12:47 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9L8CkTd037305; Sat, 21 Oct 2017 08:12:46 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9L8Ck9l037304; Sat, 21 Oct 2017 08:12:46 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201710210812.v9L8Ck9l037304@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 21 Oct 2017 08:12:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452576 - head/devel/autoconf-wrapper X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/devel/autoconf-wrapper X-SVN-Commit-Revision: 452576 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Oct 2017 08:12:48 -0000 Author: pi Date: Sat Oct 21 08:12:46 2017 New Revision: 452576 URL: https://svnweb.freebsd.org/changeset/ports/452576 Log: devel/autoconf-wrapper: Add license information and fix portlint warning PR: 222336 Submitted by: Yasuhiro KIMURA Approved by: tijl (maintainer timeout) Modified: head/devel/autoconf-wrapper/Makefile Modified: head/devel/autoconf-wrapper/Makefile ============================================================================== --- head/devel/autoconf-wrapper/Makefile Sat Oct 21 08:09:59 2017 (r452575) +++ head/devel/autoconf-wrapper/Makefile Sat Oct 21 08:12:46 2017 (r452576) @@ -9,12 +9,15 @@ DISTFILES= # none MAINTAINER= tijl@FreeBSD.org COMMENT?= Wrapper script for GNU autoconf +LICENSE= BSD2CLAUSE + WRKSRC= ${WRKDIR} NO_BUILD= YES TOOL?= AUTOCONF WRAPPED_TOOLS?= autoconf autoheader autom4te autoreconf autoscan \ autoupdate ifnames + .include TOOLS_CASE!= ${ECHO_CMD} ${WRAPPED_TOOLS} | ${TR} ' ' '|' @@ -31,9 +34,9 @@ do-configure: <${FILESDIR}/autotools-wrapper.sh >${WRKDIR}/${PORTNAME}.sh do-install: - @${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .for tool in ${WRAPPED_TOOLS} - @${LN} -sf ${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${tool} + ${LN} -sf ${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${tool} .endfor .include