From owner-svn-ports-head@FreeBSD.ORG Sun Nov 10 16:57:26 2013 Return-Path: Delivered-To: svn-ports-head@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 8029B1D7; Sun, 10 Nov 2013 16:57:26 +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 549B824B9; Sun, 10 Nov 2013 16:57:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAAGvQ8u052029; Sun, 10 Nov 2013 16:57:26 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAAGvQxn052028; Sun, 10 Nov 2013 16:57:26 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201311101657.rAAGvQxn052028@svn.freebsd.org> From: John Marino Date: Sun, 10 Nov 2013 16:57:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333410 - head/net/polyorb X-SVN-Group: ports-head 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.14 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: Sun, 10 Nov 2013 16:57:26 -0000 Author: marino Date: Sun Nov 10 16:57:25 2013 New Revision: 333410 URL: http://svnweb.freebsd.org/changeset/ports/333410 Log: net/polyorb: Convert to staging * Don't install license anymore as it messes up auto-plist * Bump portrevision due to this change Modified: head/net/polyorb/Makefile Modified: head/net/polyorb/Makefile ============================================================================== --- head/net/polyorb/Makefile Sun Nov 10 16:22:47 2013 (r333409) +++ head/net/polyorb/Makefile Sun Nov 10 16:57:25 2013 (r333410) @@ -3,6 +3,7 @@ PORTNAME= polyorb PORTVERSION= 2.9.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://downloads.dragonlace.net/src/ @@ -16,11 +17,12 @@ BUILD_DEPENDS= xmlada>=3.2:${PORTSDIR}/t USES+= ada gmake USE_BZIP2= yes GNU_CONFIGURE= yes +NO_MTREE= yes + USE_PYTHON_BUILD= yes +NO_LICENSES_INSTALL= yes -DESTINY= ${WRKDIR}/destino -MAKE_ENV= DESTDIR=${DESTINY} \ - PROCESSORS=${MAKE_JOBS_NUMBER} +MAKE_ENV= PROCESSORS=${MAKE_JOBS_NUMBER} CONFIGURE_ENV= PYTHON=${PYTHON_CMD} \ ac_cv_prog_CXXCPP="cpp -E" \ ac_cv_prog_SVN=false @@ -38,22 +40,19 @@ CONFIGURE_ARGS= --with-appli-perso="corb # However, GPL 2012 is particularly unstable, so a custom tarball from # SVN revision 201373 has been created, which is the last of PCS version 5. -NO_STAGE= yes do-build: - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} default + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} default post-install: - @cd ${DESTINY}${PREFIX}; ${FIND} * -type d -empty -print | ${XARGS} ${RMDIR} - ${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 | \ + @cd ${STAGEDIR}${PREFIX}; ${FIND} * -type d -empty -print | ${XARGS} ${RMDIR} + @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