From owner-svn-ports-all@FreeBSD.ORG Sun Nov 10 11:27:07 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C3750AA2; Sun, 10 Nov 2013 11:27:07 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 971F424B1; Sun, 10 Nov 2013 11:27:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAABR7vG039286; Sun, 10 Nov 2013 11:27:07 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAABR7XD039285; Sun, 10 Nov 2013 11:27:07 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201311101127.rAABR7XD039285@svn.freebsd.org> From: John Marino Date: Sun, 10 Nov 2013 11:27:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333378 - head/textproc/xmlada 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.14 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, 10 Nov 2013 11:27:07 -0000 Author: marino Date: Sun Nov 10 11:27:07 2013 New Revision: 333378 URL: http://svnweb.freebsd.org/changeset/ports/333378 Log: textproc/xmlada: Convert to staging * convert USE_GMAKE to USES * Don't install license; it messed up auto-plist * As result, bump PORTREVISION since it changes previous plist Modified: head/textproc/xmlada/Makefile Modified: head/textproc/xmlada/Makefile ============================================================================== --- head/textproc/xmlada/Makefile Sun Nov 10 11:14:29 2013 (r333377) +++ head/textproc/xmlada/Makefile Sun Nov 10 11:27:07 2013 (r333378) @@ -3,6 +3,7 @@ PORTNAME= xmlada PORTVERSION= 4.4.0.0 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://downloads.dragonlace.net/src/ @@ -12,18 +13,15 @@ COMMENT= Adacore XML suite for the Ada l LICENSE= GPLv2 GNU_CONFIGURE= yes -USE_GMAKE= yes USE_BZIP2= yes -USES= ada - -DESTINY= ${WRKDIR}/destino -MAKE_ENV+= DESTDIR=${DESTINY} +USES= ada gmake +NO_MTREE= yes MAKE_JOBS_UNSAFE= yes +NO_LICENSES_INSTALL= yes OPTIONS_DEFINE= DOCS -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDOCS} @@ -48,17 +46,15 @@ post-patch: .endif post-install: - ${RM} -rf ${DESTINY}${PREFIX}/share/doc/xmlada/_sources - ${CP} -pR ${DESTINY}${PREFIX}/ ${PREFIX}/ - @cd ${DESTINY}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \ - ${SORT} > ${WRKDIR}/PLIST.all - @cd ${DESTINY}${PREFIX}; ${FIND} * -type d | ${AWK} '/\//' | ${SORT} -r | \ + ${RM} -rf ${STAGEDIR}${PREFIX}/share/doc/xmlada/_sources + @cd ${STAGEDIR}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \ + ${SORT} > ${TMPPLIST} + @cd ${STAGEDIR}${PREFIX}; ${FIND} * -type d | ${AWK} '/\//' | ${SORT} -r | \ ${SED} -e '/lib\/gnat$$/d' -e '/share\/doc$$/d' -e '/share\/gps/d' \ - -e 's/^/@dirrm /g' >> ${WRKDIR}/PLIST.all - @echo "@unexec rmdir %D/lib/gnat 2>/dev/null || true" >> ${WRKDIR}/PLIST.all - @echo "@unexec rmdir %D/share/gps/plug-ins 2>/dev/null || true" >> ${WRKDIR}/PLIST.all - @echo "@unexec rmdir %D/share/gps 2>/dev/null || true" >> ${WRKDIR}/PLIST.all - @echo "@unexec rmdir %D/share/doc 2>/dev/null || true" >> ${WRKDIR}/PLIST.all - @${CAT} ${WRKDIR}/PLIST.all >> ${TMPPLIST} + -e 's/^/@dirrm /g' >> ${TMPPLIST} + @echo "@unexec rmdir %D/lib/gnat 2>/dev/null || true" >> ${TMPPLIST} + @echo "@unexec rmdir %D/share/gps/plug-ins 2>/dev/null || true" >> ${TMPPLIST} + @echo "@unexec rmdir %D/share/gps 2>/dev/null || true" >> ${TMPPLIST} + @echo "@unexec rmdir %D/share/doc 2>/dev/null || true" >> ${TMPPLIST} .include