From owner-svn-ports-all@freebsd.org Mon Dec 26 16:43:28 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 E4D2CC91D71; Mon, 26 Dec 2016 16:43:28 +0000 (UTC) (envelope-from sunpoet@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 A9B961E60; Mon, 26 Dec 2016 16:43:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBQGhRQ2099493; Mon, 26 Dec 2016 16:43:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBQGhRkU099491; Mon, 26 Dec 2016 16:43:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612261643.uBQGhRkU099491@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 26 Dec 2016 16:43:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429540 - head/devel/nant 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: Mon, 26 Dec 2016 16:43:29 -0000 Author: sunpoet Date: Mon Dec 26 16:43:27 2016 New Revision: 429540 URL: https://svnweb.freebsd.org/changeset/ports/429540 Log: - Change EXAMPLESDIR: unified with other DIRs - Convert to options target helper - Add GitHub repository to WWW - Bump PORTREVISION for package change Modified: head/devel/nant/Makefile head/devel/nant/pkg-descr Modified: head/devel/nant/Makefile ============================================================================== --- head/devel/nant/Makefile Mon Dec 26 16:43:22 2016 (r429539) +++ head/devel/nant/Makefile Mon Dec 26 16:43:27 2016 (r429540) @@ -4,6 +4,7 @@ PORTNAME= nant PORTVERSION= 0.92 DISTVERSIONSUFFIX= -src +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF @@ -24,6 +25,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER DATADIR= ${PREFIX}/share/NAnt DOCSDIR= ${PREFIX}/share/doc/NAnt +EXAMPLESDIR= ${PREFIX}/share/examples/NAnt post-patch: @${REINPLACE_CMD} -e 's|lib/pkgconfig|libdata/pkgconfig|' ${WRKSRC}/NAnt.build @@ -31,7 +33,7 @@ post-patch: ${WRKSRC}/src/NAnt.Console/App.config \ ${WRKSRC}/tests/NAnt.Core/Framework.config -post-install: +post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/ Modified: head/devel/nant/pkg-descr ============================================================================== --- head/devel/nant/pkg-descr Mon Dec 26 16:43:22 2016 (r429539) +++ head/devel/nant/pkg-descr Mon Dec 26 16:43:27 2016 (r429540) @@ -11,3 +11,4 @@ Because Ant was too Java-specific. Because Ant needed the Java runtime. NAnt only needs the .NET or Mono runtime. WWW: http://nant.sourceforge.net/ +WWW: https://github.com/nant/nant