Index: devel/pear/Makefile =================================================================== --- devel/pear/Makefile (revision 333102) +++ devel/pear/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= pear PORTVERSION= 1.9.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://miwibox.org/distfiles/ @@ -19,6 +19,8 @@ PEARDIR= ${PREFIX}/share/pear +# https://github.com/pear/pear-core/blob/master/install-pear.php +# supports ${SETENV} INSTALL_ROOT=${STAGEDIR} NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" \ Index: devel/pear/bsd.pear.channel.mk =================================================================== --- devel/pear/bsd.pear.channel.mk (revision 333102) +++ devel/pear/bsd.pear.channel.mk (working copy) @@ -29,8 +29,9 @@ .endif do-install: - @${MKDIR} ${PREFIX}/${LPEARDIR}/.registry/.channel.${PEAR_CHANNEL_HOST} + @${MKDIR} ${STAGEDIR}${PREFIX}/${LPEARDIR}/.channels/.alias + @${MKDIR} ${STAGEDIR}${PREFIX}/${LPEARDIR}/.registry/.channel.${PEAR_CHANNEL_HOST} @${INSTALL_DATA} ${PEAR_CHANNEL_REG} \ - ${PREFIX}/${LPEARDIR}/.channels/ + ${STAGEDIR}${PREFIX}/${LPEARDIR}/.channels @${ECHO_CMD} -n ${PEAR_CHANNEL_HOST} > \ - ${PREFIX}/${LPEARDIR}/.channels/.alias/${PEAR_CHANNEL_ALIAS}.txt + ${STAGEDIR}${PREFIX}/${LPEARDIR}/.channels/.alias/${PEAR_CHANNEL_ALIAS}.txt Index: devel/pear/bsd.pear.mk =================================================================== --- devel/pear/bsd.pear.mk (revision 333102) +++ devel/pear/bsd.pear.mk (working copy) @@ -190,9 +190,21 @@ ${ECHO_CMD} "Cannot generate packing list: package files outside PREFIX"; \ exit 1; fi; @${ECHO_CMD} "${LPKGREGDIR}/package.xml" > ${PLIST} + # pkg_install needs to escape $ in directory name while pkg does not +.if defined(WITH_PKGNG) @cd ${WRKDIR}/inst/${PREFIX} && ${FIND} . -type f | ${SORT} \ | ${CUT} -c 3- >> ${PLIST} @DIRS=`cd ${WRKDIR}/inst/${PREFIX} && ${FIND} . -type d | ${SORT} -r | \ + ${CUT} -c 3-`; \ + for d in $${DIRS}; do \ + if [ ! -d ${LOCALBASE}/$${d} ]; then \ + ${ECHO_CMD} "@dirrmtry $${d}" >> ${PLIST}; \ + fi; \ + done +.else + @cd ${WRKDIR}/inst/${PREFIX} && ${FIND} . -type f | ${SORT} \ + | ${CUT} -c 3- >> ${PLIST} + @DIRS=`cd ${WRKDIR}/inst/${PREFIX} && ${FIND} . -type d | ${SORT} -r | \ ${CUT} -c 3- | ${SED} -e 's,\\$$,\\\\$$,g'`; \ for d in $${DIRS}; do \ if [ ! -d ${LOCALBASE}/$${d} ]; then \ @@ -199,6 +211,7 @@ ${ECHO_CMD} "@dirrmtry $${d}" >> ${PLIST}; \ fi; \ done +.endif @${ECHO_CMD} "@dirrm ${LPKGREGDIR}" >> ${PLIST} @${ECHO_CMD} "@dirrmtry ${LPKGREGDIR:H}" >> ${PLIST} @@ -215,26 +228,30 @@ do-auto-install: @${ECHO_MSG} "===> Installing package with pear" +.if defined(NO_STAGE) @cd ${WRKSRC} && ${PEAR} install -n -f package.xml +.else + @cd ${WRKSRC} && ${PEAR} install -n -f -P ${STAGEDIR} package.xml +.endif do-install-files: do-install-files-msg - @${MKDIR} ${INSTDIR} + @${MKDIR} ${STAGEDIR}${INSTDIR} . for dir in ${FILESDIRS} - @${MKDIR} ${INSTDIR}/${dir} + @${MKDIR} ${STAGEDIR}${INSTDIR}/${dir} . endfor . for file in ${FILES} - @${INSTALL_DATA} ${PEARWRKSRC}/${file} ${INSTDIR}/${file} + @${INSTALL_DATA} ${PEARWRKSRC}/${file} ${STAGEDIR}${INSTDIR}/${file} . endfor do-install-docs: do-install-docs-msg . if !defined(NOPORTDOCS) && !empty(DOCS) @${ECHO_MSG} "===> Installing documentation in ${DOCSDIR}." - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} . for dir in ${DOCSDIRS} - @${MKDIR} ${DOCSDIR}/${dir} + @${MKDIR} ${STAGEDIR}${DOCSDIR}/${dir} . endfor . for file in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${_DOCSDIR}/${file} ${DOCSDIR}/${file} + @${INSTALL_DATA} ${WRKSRC}/${_DOCSDIR}/${file} ${STAGEDIR}${DOCSDIR}/${file} . endfor . endif @@ -241,12 +258,12 @@ do-install-tests: do-install-tests-msg . if !empty(TESTS) @${ECHO_MSG} "===> Installing tests in ${TESTSDIR}." - @${MKDIR} ${TESTSDIR} + @${MKDIR} ${STAGEDIR}${TESTSDIR} . for dir in ${TESTSDIRS} - @${MKDIR} ${TESTSDIR}/${dir} + @${MKDIR} ${STAGEDIR}${TESTSDIR}/${dir} . endfor . for file in ${TESTS} - @${INSTALL_DATA} ${WRKSRC}/${_TESTSDIR}/${file} ${TESTSDIR}/${file} + @${INSTALL_DATA} ${WRKSRC}/${_TESTSDIR}/${file} ${STAGEDIR}${TESTSDIR}/${file} . endfor . endif @@ -253,12 +270,12 @@ do-install-data: do-install-data-msg . if !empty(DATA) @${ECHO_MSG} "===> Installing data in ${DATADIR}." - @${MKDIR} ${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} . for dir in ${DATADIRS} - @${MKDIR} ${DATADIR}/${dir} + @${MKDIR} ${STAGEDIR}${DATADIR}/${dir} . endfor . for file in ${DATA} - @${INSTALL_DATA} ${WRKSRC}/${_DATADIR}/${file} ${DATADIR}/${file} + @${INSTALL_DATA} ${WRKSRC}/${_DATADIR}/${file} ${STAGEDIR}${DATADIR}/${file} . endfor . endif @@ -265,12 +282,12 @@ do-install-sqls: do-install-sqls-msg . if !empty(SQLS) @${ECHO_MSG} "===> Installing sqls in ${SQLSDIR}." - @${MKDIR} ${SQLSDIR} + @${MKDIR} ${STAGEDIR}${SQLSDIR} . for dir in ${SQLSDIRS} - @${MKDIR} ${SQLSDIR}/${dir} + @${MKDIR} ${STAGEDIR}${SQLSDIR}/${dir} . endfor . for file in ${SQLS} - @${INSTALL_DATA} ${WRKSRC}/${_SQLSDIR}/${file} ${SQLSDIR}/${file} + @${INSTALL_DATA} ${WRKSRC}/${_SQLSDIR}/${file} ${STAGEDIR}${SQLSDIR}/${file} . endfor . endif @@ -282,7 +299,7 @@ @${REINPLACE_CMD} -e "s|@php_bin@|${SCRIPTFILESDIR}/php|g" ${WRKSRC}/${file} @${REINPLACE_CMD} -e "s|@php_dir@|${PREFIX}/lib/php|g" ${WRKSRC}/${file} @${REINPLACE_CMD} -e "s|@include_path@|${PREFIX}/${LPEARDIR}|g" ${WRKSRC}/${file} - @${INSTALL_SCRIPT} ${WRKSRC}/${file} ${SCRIPTFILESDIR}/${file} + @${INSTALL_SCRIPT} ${WRKSRC}/${file} ${STAGEDIR}${SCRIPTFILESDIR}/${file} . endfor . endif @@ -289,12 +306,12 @@ do-install-examples: do-install-examples-msg . if !defined(NOPORTDOCS) && !empty(EXAMPLES) @${ECHO_MSG} "===> Installing examples in ${EXAMPLESDIR}." - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} . for dir in ${EXAMPLESDIRS} - @${MKDIR} ${EXAMPLESDIR}/${dir} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/${dir} . endfor . for file in ${EXAMPLES} - @${INSTALL_DATA} ${WRKSRC}/${_EXAMPLESDIR}/${file} ${EXAMPLESDIR}/${file} + @${INSTALL_DATA} ${WRKSRC}/${_EXAMPLESDIR}/${file} ${STAGEDIR}${EXAMPLESDIR}/${file} . endfor . endif .endif @@ -303,9 +320,9 @@ @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${PORTSDIR}/devel/pear/pear-deinstall.in > ${WRKDIR}/pear-deinstall pear-post-install: - @${MKDIR} ${PKGREGDIR} - @${INSTALL_DATA} ${WRKDIR}/package.xml ${PKGREGDIR} -.if !defined(PEAR_AUTOINSTALL) + @${MKDIR} ${STAGEDIR}${PKGREGDIR} + @${INSTALL_DATA} ${WRKDIR}/package.xml ${STAGEDIR}${PKGREGDIR} +.if defined(NO_STAGE) && !defined(PEAR_AUTOINSTALL) @${SETENV} PKG_PREFIX=${PREFIX} \ ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL .endif Index: devel/pear/pkg-install =================================================================== --- devel/pear/pkg-install (revision 0) +++ devel/pear/pkg-install (working copy) @@ -0,0 +1,11 @@ +#!/bin/sh + +if [ "$2" != "POST-INSTALL" ]; then + exit 0 +fi + +# Regenerate %%PEARDIR%%/.depdb post-install +# This is to prevent fs or stage violation for first dependent port +${PKG_PREFIX}/bin/pear list > /dev/null + +exit 0 Property changes on: devel/pear/pkg-install ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: devel/pear/pkg-plist =================================================================== --- devel/pear/pkg-plist (revision 333102) +++ devel/pear/pkg-plist (working copy) @@ -166,6 +166,9 @@ @rmtry share/pear/.lock @dirrmtry share/pear/.channels/.alias @dirrmtry share/pear/.channels +@exec mkdir -p %D/share/pear/.registry/.channel.__uri +@exec mkdir -p %D/share/pear/.registry/.channel.doc.php.net +@exec mkdir -p %D/share/pear/.registry/.channel.pecl.php.net @dirrmtry share/pear/.registry/.channel.__uri @dirrmtry share/pear/.registry/.channel.doc.php.net @dirrmtry share/pear/.registry/.channel.pecl.php.net Index: devel/pear-Config/Makefile =================================================================== --- devel/pear-Config/Makefile (revision 333102) +++ devel/pear-Config/Makefile (working copy) @@ -18,7 +18,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPEAR_XML_PARSER} Index: devel/pear-Console_Color/Makefile =================================================================== --- devel/pear-Console_Color/Makefile (revision 333102) +++ devel/pear-Console_Color/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Console_CommandLine/Makefile =================================================================== --- devel/pear-Console_CommandLine/Makefile (revision 333102) +++ devel/pear-Console_CommandLine/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Console_Getargs/Makefile =================================================================== --- devel/pear-Console_Getargs/Makefile (revision 333102) +++ devel/pear-Console_Getargs/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Console_Table/Makefile =================================================================== --- devel/pear-Console_Table/Makefile (revision 333102) +++ devel/pear-Console_Table/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date/Makefile =================================================================== --- devel/pear-Date/Makefile (revision 333102) +++ devel/pear-Date/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays/Makefile =================================================================== --- devel/pear-Date_Holidays/Makefile (revision 333102) +++ devel/pear-Date_Holidays/Makefile (working copy) @@ -19,7 +19,6 @@ OPTIONS_DEFINE= PEAR_CONSOLE_GETARGS PEAR_CONSOLE_GETARGS_DESC= Console::Getargs support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPEAR_CONSOLE_GETARGS} Index: devel/pear-Date_Holidays_Austria/Makefile =================================================================== --- devel/pear-Date_Holidays_Austria/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Austria/Makefile (working copy) @@ -12,7 +12,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Brazil/Makefile =================================================================== --- devel/pear-Date_Holidays_Brazil/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Brazil/Makefile (working copy) @@ -12,7 +12,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Denmark/Makefile =================================================================== --- devel/pear-Date_Holidays_Denmark/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Denmark/Makefile (working copy) @@ -12,7 +12,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Discordian/Makefile =================================================================== --- devel/pear-Date_Holidays_Discordian/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Discordian/Makefile (working copy) @@ -12,7 +12,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_EnglandWales/Makefile =================================================================== --- devel/pear-Date_Holidays_EnglandWales/Makefile (revision 333102) +++ devel/pear-Date_Holidays_EnglandWales/Makefile (working copy) @@ -12,7 +12,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Germany/Makefile =================================================================== --- devel/pear-Date_Holidays_Germany/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Germany/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Iceland/Makefile =================================================================== --- devel/pear-Date_Holidays_Iceland/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Iceland/Makefile (working copy) @@ -12,7 +12,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Ireland/Makefile =================================================================== --- devel/pear-Date_Holidays_Ireland/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Ireland/Makefile (working copy) @@ -12,7 +12,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Italy/Makefile =================================================================== --- devel/pear-Date_Holidays_Italy/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Italy/Makefile (working copy) @@ -16,7 +16,6 @@ PLIST_SUB= PORTVERSION=${PORTVERSION} -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Japan/Makefile =================================================================== --- devel/pear-Date_Holidays_Japan/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Japan/Makefile (working copy) @@ -12,7 +12,6 @@ PEAR_AUTOINSTALL=yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Netherlands/Makefile =================================================================== --- devel/pear-Date_Holidays_Netherlands/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Netherlands/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes PLIST_SUB= PORTVERSION=${PORTVERSION} -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Norway/Makefile =================================================================== --- devel/pear-Date_Holidays_Norway/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Norway/Makefile (working copy) @@ -13,7 +13,6 @@ CATEGORY= Date FILES= Holidays/Driver/Norway.php -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_PHPdotNet/Makefile =================================================================== --- devel/pear-Date_Holidays_PHPdotNet/Makefile (revision 333102) +++ devel/pear-Date_Holidays_PHPdotNet/Makefile (working copy) @@ -14,7 +14,6 @@ FILES= Holidays/Driver/PHPdotNet.php TESTS= Date_Holidays_Driver_PHPdotNet_TestSuite.php -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Romania/Makefile =================================================================== --- devel/pear-Date_Holidays_Romania/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Romania/Makefile (working copy) @@ -14,7 +14,6 @@ FILES= Holidays/Driver/Romania.php TESTS= Date_Holidays_Driver_Romania_TestSuite.php -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Slovenia/Makefile =================================================================== --- devel/pear-Date_Holidays_Slovenia/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Slovenia/Makefile (working copy) @@ -14,7 +14,6 @@ FILES= Holidays/Driver/Slovenia.php TESTS= Date_Holidays_Driver_Slovenia_TestSuite.php -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Sweden/Makefile =================================================================== --- devel/pear-Date_Holidays_Sweden/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Sweden/Makefile (working copy) @@ -12,7 +12,6 @@ PEAR_AUTOINSTALL=yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_UNO/Makefile =================================================================== --- devel/pear-Date_Holidays_UNO/Makefile (revision 333102) +++ devel/pear-Date_Holidays_UNO/Makefile (working copy) @@ -16,7 +16,6 @@ PLIST_SUB= PORTVERSION=${PORTVERSION} -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_USA/Makefile =================================================================== --- devel/pear-Date_Holidays_USA/Makefile (revision 333102) +++ devel/pear-Date_Holidays_USA/Makefile (working copy) @@ -14,7 +14,6 @@ FILES= Holidays/Driver/USA.php TESTS= Date_Holidays_Driver_USA_TestSuite.php -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Date_Holidays_Ukraine/Makefile =================================================================== --- devel/pear-Date_Holidays_Ukraine/Makefile (revision 333102) +++ devel/pear-Date_Holidays_Ukraine/Makefile (working copy) @@ -14,7 +14,6 @@ FILES= Holidays/Driver/Ukraine.php TESTS= Date_Holidays_Driver_Ukraine_TestSuite.php -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Event_Dispatcher/Makefile =================================================================== --- devel/pear-Event_Dispatcher/Makefile (revision 333102) +++ devel/pear-Event_Dispatcher/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes post-extract: .for file in ${FILES} @${REINPLACE_CMD} -e "s|@package_version@|${PORTVERSION}|" ${WRKSRC}/${file} Index: devel/pear-FSM/Makefile =================================================================== --- devel/pear-FSM/Makefile (revision 333102) +++ devel/pear-FSM/Makefile (working copy) @@ -17,7 +17,6 @@ OPTIONS_DEFINE= PEAR_GRAPGHVIZ PEAR_GRAPGHVIZ_DESC= PEAR::GraphViz support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPEAR_GRAPHVIZ} Index: devel/pear-File_Iterator/Makefile =================================================================== --- devel/pear-File_Iterator/Makefile (revision 333102) +++ devel/pear-File_Iterator/Makefile (working copy) @@ -18,7 +18,6 @@ PEAR_CHANNEL= phpunit PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_BBCodeParser/Makefile =================================================================== --- devel/pear-HTML_BBCodeParser/Makefile (revision 333102) +++ devel/pear-HTML_BBCodeParser/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_CSS/Makefile =================================================================== --- devel/pear-HTML_CSS/Makefile (revision 333102) +++ devel/pear-HTML_CSS/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Common/Makefile =================================================================== --- devel/pear-HTML_Common/Makefile (revision 333102) +++ devel/pear-HTML_Common/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Common2/Makefile =================================================================== --- devel/pear-HTML_Common2/Makefile (revision 333102) +++ devel/pear-HTML_Common2/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Form/Makefile =================================================================== --- devel/pear-HTML_Form/Makefile (revision 333102) +++ devel/pear-HTML_Form/Makefile (working copy) @@ -14,7 +14,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Javascript/Makefile =================================================================== --- devel/pear-HTML_Javascript/Makefile (revision 333102) +++ devel/pear-HTML_Javascript/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Page2/Makefile =================================================================== --- devel/pear-HTML_Page2/Makefile (revision 333102) +++ devel/pear-HTML_Page2/Makefile (working copy) @@ -14,7 +14,6 @@ PEAR_AUTOINSTALL=yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_QuickForm/Makefile =================================================================== --- devel/pear-HTML_QuickForm/Makefile (revision 333102) +++ devel/pear-HTML_QuickForm/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_QuickForm2/Makefile =================================================================== --- devel/pear-HTML_QuickForm2/Makefile (revision 333102) +++ devel/pear-HTML_QuickForm2/Makefile (working copy) @@ -14,7 +14,6 @@ DEFAULT_PHP_VER=5 PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_QuickForm_Controller/Makefile =================================================================== --- devel/pear-HTML_QuickForm_Controller/Makefile (revision 333102) +++ devel/pear-HTML_QuickForm_Controller/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_QuickForm_Livesearch/Makefile =================================================================== --- devel/pear-HTML_QuickForm_Livesearch/Makefile (revision 333102) +++ devel/pear-HTML_QuickForm_Livesearch/Makefile (working copy) @@ -15,7 +15,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_QuickForm_Renderer_Tableless/Makefile =================================================================== --- devel/pear-HTML_QuickForm_Renderer_Tableless/Makefile (revision 333102) +++ devel/pear-HTML_QuickForm_Renderer_Tableless/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_QuickForm_SelectFilter/Makefile =================================================================== --- devel/pear-HTML_QuickForm_SelectFilter/Makefile (revision 333102) +++ devel/pear-HTML_QuickForm_SelectFilter/Makefile (working copy) @@ -14,7 +14,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_QuickForm_advmultiselect/Makefile =================================================================== --- devel/pear-HTML_QuickForm_advmultiselect/Makefile (revision 333102) +++ devel/pear-HTML_QuickForm_advmultiselect/Makefile (working copy) @@ -15,7 +15,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Select/Makefile =================================================================== --- devel/pear-HTML_Select/Makefile (revision 333102) +++ devel/pear-HTML_Select/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= YES -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Select_Common/Makefile =================================================================== --- devel/pear-HTML_Select_Common/Makefile (revision 333102) +++ devel/pear-HTML_Select_Common/Makefile (working copy) @@ -15,7 +15,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Table/Makefile =================================================================== --- devel/pear-HTML_Table/Makefile (revision 333102) +++ devel/pear-HTML_Table/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Template_Flexy/Makefile =================================================================== --- devel/pear-HTML_Template_Flexy/Makefile (revision 333102) +++ devel/pear-HTML_Template_Flexy/Makefile (working copy) @@ -19,7 +19,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPEAR_HTML_JAVASCRIPT} Index: devel/pear-HTML_Template_IT/Makefile =================================================================== --- devel/pear-HTML_Template_IT/Makefile (revision 333102) +++ devel/pear-HTML_Template_IT/Makefile (working copy) @@ -18,7 +18,6 @@ @${ECHO_MSG} " (These tests require PHPUnit - see" @${ECHO_MSG} " ;;)." -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Template_PHPLIB/Makefile =================================================================== --- devel/pear-HTML_Template_PHPLIB/Makefile (revision 333102) +++ devel/pear-HTML_Template_PHPLIB/Makefile (working copy) @@ -22,7 +22,6 @@ @${ECHO_MSG} " (These tests also require PEAR::PHPUnit - see" @${ECHO_MSG} " ;;;)." -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_Template_Sigma/Makefile =================================================================== --- devel/pear-HTML_Template_Sigma/Makefile (revision 333102) +++ devel/pear-HTML_Template_Sigma/Makefile (working copy) @@ -19,7 +19,6 @@ @${ECHO_MSG} " (These tests require PHPUnit - see" @${ECHO_MSG} " ;;)." -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-HTML_TreeMenu/Makefile =================================================================== --- devel/pear-HTML_TreeMenu/Makefile (revision 333102) +++ devel/pear-HTML_TreeMenu/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Horde_Alarm/Makefile =================================================================== --- devel/pear-Horde_Alarm/Makefile (revision 333102) +++ devel/pear-Horde_Alarm/Makefile (working copy) @@ -10,7 +10,6 @@ USE_HORDE_RUN= Horde_Date Horde_Exception Horde_Translation -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Argv/Makefile =================================================================== --- devel/pear-Horde_Argv/Makefile (revision 333102) +++ devel/pear-Horde_Argv/Makefile (working copy) @@ -10,7 +10,6 @@ USE_HORDE_RUN= Horde_Exception Horde_Translation -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Autoloader/Makefile =================================================================== --- devel/pear-Horde_Autoloader/Makefile (revision 333102) +++ devel/pear-Horde_Autoloader/Makefile (working copy) @@ -8,7 +8,6 @@ MAINTAINER= horde@FreeBSD.org COMMENT= Horde Autoloader -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Autoloader_Cache/Makefile =================================================================== --- devel/pear-Horde_Autoloader_Cache/Makefile (revision 333102) +++ devel/pear-Horde_Autoloader_Cache/Makefile (working copy) @@ -11,7 +11,6 @@ USE_HORDE_RUN= Horde_Autoloader USE_PHP= json -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Cache/Makefile =================================================================== --- devel/pear-Horde_Cache/Makefile (revision 333102) +++ devel/pear-Horde_Cache/Makefile (working copy) @@ -17,7 +17,6 @@ Horde_Util USE_PHP= hash -NO_STAGE= yes .include .if ${PORT_OPTIONS:MAPC} Index: devel/pear-Horde_Cli/Makefile =================================================================== --- devel/pear-Horde_Cli/Makefile (revision 333102) +++ devel/pear-Horde_Cli/Makefile (working copy) @@ -9,7 +9,6 @@ USE_HORDE_RUN= Horde_Support Horde_Translation -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Constraint/Makefile =================================================================== --- devel/pear-Horde_Constraint/Makefile (revision 333102) +++ devel/pear-Horde_Constraint/Makefile (working copy) @@ -8,7 +8,6 @@ MAINTAINER= horde@FreeBSD.org COMMENT= Horde Constraint library -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Controller/Makefile =================================================================== --- devel/pear-Horde_Controller/Makefile (revision 333102) +++ devel/pear-Horde_Controller/Makefile (working copy) @@ -14,7 +14,6 @@ Horde_Support \ Horde_Util -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Core/Makefile =================================================================== --- devel/pear-Horde_Core/Makefile (revision 333102) +++ devel/pear-Horde_Core/Makefile (working copy) @@ -63,7 +63,6 @@ # Not required but wanted USE_HORDE_RUN+= Horde_Routes -NO_STAGE= yes .include .if defined(WITH_KOLAB) Index: devel/pear-Horde_Data/Makefile =================================================================== --- devel/pear-Horde_Data/Makefile (revision 333102) +++ devel/pear-Horde_Data/Makefile (working copy) @@ -16,7 +16,6 @@ Horde_Translation \ Horde_Util -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Date/Makefile =================================================================== --- devel/pear-Horde_Date/Makefile (revision 333102) +++ devel/pear-Horde_Date/Makefile (working copy) @@ -12,7 +12,6 @@ Horde_Nls \ Horde_Translation -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Date_Parser/Makefile =================================================================== --- devel/pear-Horde_Date_Parser/Makefile (revision 333102) +++ devel/pear-Horde_Date_Parser/Makefile (working copy) @@ -11,7 +11,6 @@ USE_HORDE_RUN= Horde_Date \ Horde_Support -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Exception/Makefile =================================================================== --- devel/pear-Horde_Exception/Makefile (revision 333102) +++ devel/pear-Horde_Exception/Makefile (working copy) @@ -10,7 +10,6 @@ USE_HORDE_RUN= Horde_Translation -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_History/Makefile =================================================================== --- devel/pear-Horde_History/Makefile (revision 333102) +++ devel/pear-Horde_History/Makefile (working copy) @@ -11,7 +11,6 @@ USE_HORDE_RUN= Horde_Db \ Horde_Exception -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Icalendar/Makefile =================================================================== --- devel/pear-Horde_Icalendar/Makefile (revision 333102) +++ devel/pear-Horde_Icalendar/Makefile (working copy) @@ -15,7 +15,6 @@ Horde_Translation \ Horde_Util -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Injector/Makefile =================================================================== --- devel/pear-Horde_Injector/Makefile (revision 333102) +++ devel/pear-Horde_Injector/Makefile (working copy) @@ -10,7 +10,6 @@ USE_HORDE_RUN= Horde_Exception -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Itip/Makefile =================================================================== --- devel/pear-Horde_Itip/Makefile (revision 333102) +++ devel/pear-Horde_Itip/Makefile (working copy) @@ -11,7 +11,6 @@ USE_HORDE_RUN= Horde_Icalendar \ Horde_Mime -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Lock/Makefile =================================================================== --- devel/pear-Horde_Lock/Makefile (revision 333102) +++ devel/pear-Horde_Lock/Makefile (working copy) @@ -11,7 +11,6 @@ USE_HORDE_RUN= Horde_Exception \ Horde_Support -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_LoginTasks/Makefile =================================================================== --- devel/pear-Horde_LoginTasks/Makefile (revision 333102) +++ devel/pear-Horde_LoginTasks/Makefile (working copy) @@ -10,7 +10,6 @@ USE_HORDE_RUN= Horde_Translation -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Nls/Makefile =================================================================== --- devel/pear-Horde_Nls/Makefile (revision 333102) +++ devel/pear-Horde_Nls/Makefile (working copy) @@ -16,7 +16,6 @@ OPTIONS_DEFINE= GEOIP GEOIP_DESC= Depend on geoip PHP extension -NO_STAGE= yes .include .if ${PORT_OPTIONS:MGEOIP} Index: devel/pear-Horde_Notification/Makefile =================================================================== --- devel/pear-Horde_Notification/Makefile (revision 333102) +++ devel/pear-Horde_Notification/Makefile (working copy) @@ -12,7 +12,6 @@ Horde_Util USE_PHP= gettext -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Prefs/Makefile =================================================================== --- devel/pear-Horde_Prefs/Makefile (revision 333102) +++ devel/pear-Horde_Prefs/Makefile (working copy) @@ -14,7 +14,6 @@ Horde_Util USE_PHP= json -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Queue/Makefile =================================================================== --- devel/pear-Horde_Queue/Makefile (revision 333102) +++ devel/pear-Horde_Queue/Makefile (working copy) @@ -8,7 +8,6 @@ MAINTAINER= horde@FreeBSD.org COMMENT= Horde Queue -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Rdo/Makefile =================================================================== --- devel/pear-Horde_Rdo/Makefile (revision 333102) +++ devel/pear-Horde_Rdo/Makefile (working copy) @@ -12,7 +12,6 @@ USE_HORDE_RUN= Horde_Db \ Horde_Exception -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Role/Makefile =================================================================== --- devel/pear-Horde_Role/Makefile (revision 333102) +++ devel/pear-Horde_Role/Makefile (working copy) @@ -10,13 +10,12 @@ PATCH_WRKSRC= ${WRKDIR} -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" post-install: - @${MKDIR} ${PREFIX}/${HORDE_DIR} - @${TOUCH} ${PREFIX}/${HORDE_DIR}/.keep_me + @${MKDIR} ${STAGEDIR}${PREFIX}/${HORDE_DIR} + @${TOUCH} ${STAGEDIR}${PREFIX}/${HORDE_DIR}/.keep_me @${ECHO_CMD} "${HORDE_DIR}/.keep_me" >> ${TMPPLIST} @${ECHO_CMD} "@unexec rmdir %D/${HORDE_DIR} 2>/dev/null || true" >> \ ${TMPPLIST} Index: devel/pear-Horde_Scheduler/Makefile =================================================================== --- devel/pear-Horde_Scheduler/Makefile (revision 333102) +++ devel/pear-Horde_Scheduler/Makefile (working copy) @@ -12,7 +12,6 @@ Horde_Util \ Horde_Vfs -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Serialize/Makefile =================================================================== --- devel/pear-Horde_Serialize/Makefile (revision 333102) +++ devel/pear-Horde_Serialize/Makefile (working copy) @@ -11,7 +11,6 @@ USE_HORDE_RUN= Horde_Exception \ Horde_Util -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Stream/Makefile =================================================================== --- devel/pear-Horde_Stream/Makefile (revision 333102) +++ devel/pear-Horde_Stream/Makefile (working copy) @@ -10,7 +10,6 @@ USE_HORDE_RUN= Horde_Exception -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Stream_Filter/Makefile =================================================================== --- devel/pear-Horde_Stream_Filter/Makefile (revision 333102) +++ devel/pear-Horde_Stream_Filter/Makefile (working copy) @@ -8,7 +8,6 @@ MAINTAINER= horde@FreeBSD.org COMMENT= Horde Stream filters -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Stream_Wrapper/Makefile =================================================================== --- devel/pear-Horde_Stream_Wrapper/Makefile (revision 333102) +++ devel/pear-Horde_Stream_Wrapper/Makefile (working copy) @@ -8,7 +8,6 @@ MAINTAINER= horde@FreeBSD.org COMMENT= Horde Stream wrappers -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Support/Makefile =================================================================== --- devel/pear-Horde_Support/Makefile (revision 333102) +++ devel/pear-Horde_Support/Makefile (working copy) @@ -11,7 +11,6 @@ USE_HORDE_RUN= Horde_Exception \ Horde_Stream_Wrapper -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Thrift/Makefile =================================================================== --- devel/pear-Horde_Thrift/Makefile (revision 333102) +++ devel/pear-Horde_Thrift/Makefile (working copy) @@ -8,7 +8,6 @@ MAINTAINER= horde@FreeBSD.org COMMENT= Horde Thrift Client -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Timezone/Makefile =================================================================== --- devel/pear-Horde_Timezone/Makefile (revision 333102) +++ devel/pear-Horde_Timezone/Makefile (working copy) @@ -12,7 +12,6 @@ Horde_Icalendar \ Horde_Vfs -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Token/Makefile =================================================================== --- devel/pear-Horde_Token/Makefile (revision 333102) +++ devel/pear-Horde_Token/Makefile (working copy) @@ -14,7 +14,6 @@ Horde_Util USE_PHP= hash -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Translation/Makefile =================================================================== --- devel/pear-Horde_Translation/Makefile (revision 333102) +++ devel/pear-Horde_Translation/Makefile (working copy) @@ -8,7 +8,6 @@ MAINTAINER= horde@FreeBSD.org COMMENT= Horde translation library -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Tree/Makefile =================================================================== --- devel/pear-Horde_Tree/Makefile (revision 333102) +++ devel/pear-Horde_Tree/Makefile (working copy) @@ -12,7 +12,6 @@ Horde_Url \ Horde_Util -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_Util/Makefile =================================================================== --- devel/pear-Horde_Util/Makefile (revision 333102) +++ devel/pear-Horde_Util/Makefile (working copy) @@ -8,7 +8,6 @@ USE_PHP= dom -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-Horde_View/Makefile =================================================================== --- devel/pear-Horde_View/Makefile (revision 333102) +++ devel/pear-Horde_View/Makefile (working copy) @@ -11,7 +11,6 @@ Horde_Support \ Horde_Util -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" .include Index: devel/pear-I18N/Makefile =================================================================== --- devel/pear-I18N/Makefile (revision 333102) +++ devel/pear-I18N/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-IO_Bit/Makefile =================================================================== --- devel/pear-IO_Bit/Makefile (revision 333102) +++ devel/pear-IO_Bit/Makefile (working copy) @@ -21,7 +21,6 @@ PEAR_CHANNEL= openpear PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Math_Fraction/Makefile =================================================================== --- devel/pear-Math_Fraction/Makefile (revision 333102) +++ devel/pear-Math_Fraction/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Net_Gearman/Makefile =================================================================== --- devel/pear-Net_Gearman/Makefile (revision 333102) +++ devel/pear-Net_Gearman/Makefile (working copy) @@ -15,7 +15,6 @@ USE_PHP= json mbstring PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-OLE/Makefile =================================================================== --- devel/pear-OLE/Makefile (revision 333102) +++ devel/pear-OLE/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PEAR_Info/Makefile =================================================================== --- devel/pear-PEAR_Info/Makefile (revision 333102) +++ devel/pear-PEAR_Info/Makefile (working copy) @@ -20,7 +20,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPEAR_PHPUNIT3} Index: devel/pear-PEAR_PackageFileManager/Makefile =================================================================== --- devel/pear-PEAR_PackageFileManager/Makefile (revision 333102) +++ devel/pear-PEAR_PackageFileManager/Makefile (working copy) @@ -18,7 +18,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPEAR_PHP_COMPATINFO} Index: devel/pear-PEAR_PackageFileManager2/Makefile =================================================================== --- devel/pear-PEAR_PackageFileManager2/Makefile (revision 333102) +++ devel/pear-PEAR_PackageFileManager2/Makefile (working copy) @@ -18,7 +18,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PEAR_PackageFileManager_Plugins/Makefile =================================================================== --- devel/pear-PEAR_PackageFileManager_Plugins/Makefile (revision 333102) +++ devel/pear-PEAR_PackageFileManager_Plugins/Makefile (working copy) @@ -17,7 +17,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHPDoc/Makefile =================================================================== --- devel/pear-PHPDoc/Makefile (revision 333102) +++ devel/pear-PHPDoc/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHPTAL/Makefile =================================================================== --- devel/pear-PHPTAL/Makefile (revision 333102) +++ devel/pear-PHPTAL/Makefile (working copy) @@ -17,7 +17,6 @@ SIMPLEXML_DESC= "Enable SimpleXML Support" JSON_DESC= "Enable JSON Support" -NO_STAGE= yes .include USE_PHP= ctype hash Index: devel/pear-PHPUnit3/Makefile =================================================================== --- devel/pear-PHPUnit3/Makefile (revision 333102) +++ devel/pear-PHPUnit3/Makefile (working copy) @@ -42,7 +42,6 @@ USE_PHP= dom spl pcre -NO_STAGE= yes .include .if ${PORT_OPTIONS:MJSON} Index: devel/pear-PHPUnit_MockObject/Makefile =================================================================== --- devel/pear-PHPUnit_MockObject/Makefile (revision 333102) +++ devel/pear-PHPUnit_MockObject/Makefile (working copy) @@ -22,7 +22,6 @@ PEAR_CHANNEL= phpunit PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_ArrayOf/Makefile =================================================================== --- devel/pear-PHP_ArrayOf/Makefile (revision 333102) +++ devel/pear-PHP_ArrayOf/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_Beautifier/Makefile =================================================================== --- devel/pear-PHP_Beautifier/Makefile (revision 333102) +++ devel/pear-PHP_Beautifier/Makefile (working copy) @@ -16,7 +16,6 @@ PEAR_AUTOINSTALL= yes DEFAULT_PHP_VER=5 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_CodeBrowser/Makefile =================================================================== --- devel/pear-PHP_CodeBrowser/Makefile (revision 333102) +++ devel/pear-PHP_CodeBrowser/Makefile (working copy) @@ -23,7 +23,6 @@ PEAR_CHANNEL= phpunit PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_CodeCoverage/Makefile =================================================================== --- devel/pear-PHP_CodeCoverage/Makefile (revision 333102) +++ devel/pear-PHP_CodeCoverage/Makefile (working copy) @@ -30,7 +30,6 @@ DOM_DESC= Enable DOM support XDEBUG_DESC= Enable Xdebug support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDOM} Index: devel/pear-PHP_CodeSniffer/Makefile =================================================================== --- devel/pear-PHP_CodeSniffer/Makefile (revision 333102) +++ devel/pear-PHP_CodeSniffer/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_Compat/Makefile =================================================================== --- devel/pear-PHP_Compat/Makefile (revision 333102) +++ devel/pear-PHP_Compat/Makefile (working copy) @@ -14,7 +14,6 @@ PORTSCOUT= skipv:1.6.0a1,1.6.0a2 PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_CompatInfo/Makefile =================================================================== --- devel/pear-PHP_CompatInfo/Makefile (revision 333102) +++ devel/pear-PHP_CompatInfo/Makefile (working copy) @@ -30,7 +30,6 @@ PEAR_XML_UTIL_DESC= PEAR::XML_Util support PEAR_HTML_TABLE_DESC= PEAR::HTML_Table -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPEAR_XML_BEAUTIFIER} Index: devel/pear-PHP_Depend/Makefile =================================================================== --- devel/pear-PHP_Depend/Makefile (revision 333102) +++ devel/pear-PHP_Depend/Makefile (working copy) @@ -21,7 +21,6 @@ PEAR_AUTOINSTALL= yes USE_PHP= dom tokenizer simplexml -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_PMD/Makefile =================================================================== --- devel/pear-PHP_PMD/Makefile (revision 333102) +++ devel/pear-PHP_PMD/Makefile (working copy) @@ -21,7 +21,6 @@ PEAR_AUTOINSTALL= yes USE_PHP= dom simplexml -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_Parser/Makefile =================================================================== --- devel/pear-PHP_Parser/Makefile (revision 333102) +++ devel/pear-PHP_Parser/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_ParserGenerator/Makefile =================================================================== --- devel/pear-PHP_ParserGenerator/Makefile (revision 333102) +++ devel/pear-PHP_ParserGenerator/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_Timer/Makefile =================================================================== --- devel/pear-PHP_Timer/Makefile (revision 333102) +++ devel/pear-PHP_Timer/Makefile (working copy) @@ -21,7 +21,6 @@ DEFAULT_PHP_VER=5 IGNORE_WITH_PHP=4 52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PHP_TokenStream/Makefile =================================================================== --- devel/pear-PHP_TokenStream/Makefile (revision 333102) +++ devel/pear-PHP_TokenStream/Makefile (working copy) @@ -20,7 +20,6 @@ PEAR_CHANNEL= phpunit PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PPW/Makefile =================================================================== --- devel/pear-PPW/Makefile (revision 333102) +++ devel/pear-PPW/Makefile (working copy) @@ -24,7 +24,6 @@ PEAR_AUTOINSTALL= yes IGNORE_WITH_PHP=52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Pager/Makefile =================================================================== --- devel/pear-Pager/Makefile (revision 333102) +++ devel/pear-Pager/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-PhpDocumentor/Makefile =================================================================== --- devel/pear-PhpDocumentor/Makefile (revision 333102) +++ devel/pear-PhpDocumentor/Makefile (working copy) @@ -19,7 +19,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" Index: devel/pear-Pirum/Makefile =================================================================== --- devel/pear-Pirum/Makefile (revision 333102) +++ devel/pear-Pirum/Makefile (working copy) @@ -23,7 +23,6 @@ DEFAULT_PHP_VER=5 IGNORE_WITH_PHP=4 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-SebastianBergmann_FinderFacade/Makefile =================================================================== --- devel/pear-SebastianBergmann_FinderFacade/Makefile (revision 333102) +++ devel/pear-SebastianBergmann_FinderFacade/Makefile (working copy) @@ -26,7 +26,6 @@ IGNORE_WITH_PHP=52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-SebastianBergmann_PHPCPD/Makefile =================================================================== --- devel/pear-SebastianBergmann_PHPCPD/Makefile (revision 333102) +++ devel/pear-SebastianBergmann_PHPCPD/Makefile (working copy) @@ -28,7 +28,6 @@ PEAR_CHANNEL= phpunit PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-SebastianBergmann_PHPLOC/Makefile =================================================================== --- devel/pear-SebastianBergmann_PHPLOC/Makefile (revision 333102) +++ devel/pear-SebastianBergmann_PHPLOC/Makefile (working copy) @@ -29,7 +29,6 @@ PEAR_CHANNEL= phpunit PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Structure_LinkedList/Makefile =================================================================== --- devel/pear-Structure_LinkedList/Makefile (revision 333102) +++ devel/pear-Structure_LinkedList/Makefile (working copy) @@ -10,7 +10,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Structures_DataGrid/Makefile =================================================================== --- devel/pear-Structures_DataGrid/Makefile (revision 333102) +++ devel/pear-Structures_DataGrid/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Structures_DataGrid_Renderer_Console/Makefile =================================================================== --- devel/pear-Structures_DataGrid_Renderer_Console/Makefile (revision 333102) +++ devel/pear-Structures_DataGrid_Renderer_Console/Makefile (working copy) @@ -14,7 +14,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Structures_DataGrid_Renderer_HTMLSortForm/Makefile =================================================================== --- devel/pear-Structures_DataGrid_Renderer_HTMLSortForm/Makefile (revision 333102) +++ devel/pear-Structures_DataGrid_Renderer_HTMLSortForm/Makefile (working copy) @@ -14,7 +14,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Structures_DataGrid_Renderer_HTMLTable/Makefile =================================================================== --- devel/pear-Structures_DataGrid_Renderer_HTMLTable/Makefile (revision 333102) +++ devel/pear-Structures_DataGrid_Renderer_HTMLTable/Makefile (working copy) @@ -15,7 +15,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Structures_DataGrid_Renderer_XUL/Makefile =================================================================== --- devel/pear-Structures_DataGrid_Renderer_XUL/Makefile (revision 333102) +++ devel/pear-Structures_DataGrid_Renderer_XUL/Makefile (working copy) @@ -14,7 +14,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Symfony_Component_Console/Makefile =================================================================== --- devel/pear-Symfony_Component_Console/Makefile (revision 333102) +++ devel/pear-Symfony_Component_Console/Makefile (working copy) @@ -13,7 +13,6 @@ IGNORE_WITH_PHP=52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-symfony2/bsd.symfony2.mk" .include Index: devel/pear-Symfony_Component_Finder/Makefile =================================================================== --- devel/pear-Symfony_Component_Finder/Makefile (revision 333102) +++ devel/pear-Symfony_Component_Finder/Makefile (working copy) @@ -13,7 +13,6 @@ IGNORE_WITH_PHP=52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear-channel-symfony2/bsd.symfony2.mk" .include Index: devel/pear-System_Command/Makefile =================================================================== --- devel/pear-System_Command/Makefile (revision 333102) +++ devel/pear-System_Command/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL=yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Testing_Selenium/Makefile =================================================================== --- devel/pear-Testing_Selenium/Makefile (revision 333102) +++ devel/pear-Testing_Selenium/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Text_Diff/Makefile =================================================================== --- devel/pear-Text_Diff/Makefile (revision 333102) +++ devel/pear-Text_Diff/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-TheSeer_DirectoryScanner/Makefile =================================================================== --- devel/pear-TheSeer_DirectoryScanner/Makefile (revision 333102) +++ devel/pear-TheSeer_DirectoryScanner/Makefile (working copy) @@ -23,7 +23,6 @@ IGNORE_WITH_PHP=52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-TheSeer_fDOMDocument/Makefile =================================================================== --- devel/pear-TheSeer_fDOMDocument/Makefile (revision 333102) +++ devel/pear-TheSeer_fDOMDocument/Makefile (working copy) @@ -23,7 +23,6 @@ IGNORE_WITH_PHP=52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-TheSeer_fXSL/Makefile =================================================================== --- devel/pear-TheSeer_fXSL/Makefile (revision 333102) +++ devel/pear-TheSeer_fXSL/Makefile (working copy) @@ -22,7 +22,6 @@ IGNORE_WITH_PHP=52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-TheSeer_phpDox/Makefile =================================================================== --- devel/pear-TheSeer_phpDox/Makefile (revision 333102) +++ devel/pear-TheSeer_phpDox/Makefile (working copy) @@ -31,7 +31,6 @@ IGNORE_WITH_PHP=52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-VFS/Makefile =================================================================== --- devel/pear-VFS/Makefile (revision 333102) +++ devel/pear-VFS/Makefile (working copy) @@ -16,7 +16,6 @@ USE_PHP= gettext PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Validate/Makefile =================================================================== --- devel/pear-Validate/Makefile (revision 333102) +++ devel/pear-Validate/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Validate_AU/Makefile =================================================================== --- devel/pear-Validate_AU/Makefile (revision 333102) +++ devel/pear-Validate_AU/Makefile (working copy) @@ -14,7 +14,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Validate_Finance/Makefile =================================================================== --- devel/pear-Validate_Finance/Makefile (revision 333102) +++ devel/pear-Validate_Finance/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Validate_Finance_CreditCard/Makefile =================================================================== --- devel/pear-Validate_Finance_CreditCard/Makefile (revision 333102) +++ devel/pear-Validate_Finance_CreditCard/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Validate_US/Makefile =================================================================== --- devel/pear-Validate_US/Makefile (revision 333102) +++ devel/pear-Validate_US/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-Var_Dump/Makefile =================================================================== --- devel/pear-Var_Dump/Makefile (revision 333102) +++ devel/pear-Var_Dump/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-VersionControl_Git/Makefile =================================================================== --- devel/pear-VersionControl_Git/Makefile (revision 333102) +++ devel/pear-VersionControl_Git/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-VersionControl_SVN/Makefile =================================================================== --- devel/pear-VersionControl_SVN/Makefile (revision 333102) +++ devel/pear-VersionControl_SVN/Makefile (working copy) @@ -16,7 +16,6 @@ USE_PHP= yes PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-XML_NITF/Makefile =================================================================== --- devel/pear-XML_NITF/Makefile (revision 333102) +++ devel/pear-XML_NITF/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-XML_Parser/Makefile =================================================================== --- devel/pear-XML_Parser/Makefile (revision 333102) +++ devel/pear-XML_Parser/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-XML_RSS/Makefile =================================================================== --- devel/pear-XML_RSS/Makefile (revision 333102) +++ devel/pear-XML_RSS/Makefile (working copy) @@ -14,7 +14,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-XML_SVG/Makefile =================================================================== --- devel/pear-XML_SVG/Makefile (revision 333102) +++ devel/pear-XML_SVG/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-XML_Serializer/Makefile =================================================================== --- devel/pear-XML_Serializer/Makefile (revision 333102) +++ devel/pear-XML_Serializer/Makefile (working copy) @@ -15,7 +15,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-XML_Transformer/Makefile =================================================================== --- devel/pear-XML_Transformer/Makefile (revision 333102) +++ devel/pear-XML_Transformer/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-XML_Tree/Makefile =================================================================== --- devel/pear-XML_Tree/Makefile (revision 333102) +++ devel/pear-XML_Tree/Makefile (working copy) @@ -16,7 +16,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-XML_Util/Makefile =================================================================== --- devel/pear-XML_Util/Makefile (revision 333102) +++ devel/pear-XML_Util/Makefile (working copy) @@ -13,7 +13,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-channel-doctrine/Makefile =================================================================== --- devel/pear-channel-doctrine/Makefile (revision 333102) +++ devel/pear-channel-doctrine/Makefile (working copy) @@ -10,7 +10,6 @@ PEAR_CHANNEL_HOST= pear.doctrine-project.org -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-ezc/Makefile =================================================================== --- devel/pear-channel-ezc/Makefile (revision 333102) +++ devel/pear-channel-ezc/Makefile (working copy) @@ -10,7 +10,6 @@ PEAR_CHANNEL_HOST= components.ez.no -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-horde/Makefile =================================================================== --- devel/pear-channel-horde/Makefile (revision 333102) +++ devel/pear-channel-horde/Makefile (working copy) @@ -10,7 +10,6 @@ PEAR_CHANNEL_HOST= pear.horde.org -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-openpear/Makefile =================================================================== --- devel/pear-channel-openpear/Makefile (revision 333102) +++ devel/pear-channel-openpear/Makefile (working copy) @@ -11,7 +11,6 @@ PEAR_CHANNEL_HOST= openpear.org -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-pdepend/Makefile =================================================================== --- devel/pear-channel-pdepend/Makefile (revision 333102) +++ devel/pear-channel-pdepend/Makefile (working copy) @@ -10,7 +10,6 @@ PEAR_CHANNEL_HOST= pear.pdepend.org -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-phing/Makefile =================================================================== --- devel/pear-channel-phing/Makefile (revision 333102) +++ devel/pear-channel-phing/Makefile (working copy) @@ -9,7 +9,6 @@ PEAR_CHANNEL_HOST= pear.phing.info -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-phpdoc/Makefile =================================================================== --- devel/pear-channel-phpdoc/Makefile (revision 333102) +++ devel/pear-channel-phpdoc/Makefile (working copy) @@ -10,7 +10,6 @@ PEAR_CHANNEL_HOST= pear.phpdoc.org -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-phpmd/Makefile =================================================================== --- devel/pear-channel-phpmd/Makefile (revision 333102) +++ devel/pear-channel-phpmd/Makefile (working copy) @@ -10,7 +10,6 @@ PEAR_CHANNEL_HOST= pear.phpmd.org -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-phpunit/Makefile =================================================================== --- devel/pear-channel-phpunit/Makefile (revision 333102) +++ devel/pear-channel-phpunit/Makefile (working copy) @@ -10,7 +10,6 @@ PEAR_CHANNEL_HOST= pear.phpunit.de -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-pirum/Makefile =================================================================== --- devel/pear-channel-pirum/Makefile (revision 333102) +++ devel/pear-channel-pirum/Makefile (working copy) @@ -11,7 +11,6 @@ PEAR_CHANNEL_HOST= pear.pirum-project.org -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-symfony/Makefile =================================================================== --- devel/pear-channel-symfony/Makefile (revision 333102) +++ devel/pear-channel-symfony/Makefile (working copy) @@ -10,7 +10,6 @@ PEAR_CHANNEL_HOST= pear.symfony-project.com -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-symfony2/Makefile =================================================================== --- devel/pear-channel-symfony2/Makefile (revision 333102) +++ devel/pear-channel-symfony2/Makefile (working copy) @@ -11,7 +11,6 @@ PEAR_CHANNEL_HOST= pear.symfony.com -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-channel-theseer/Makefile =================================================================== --- devel/pear-channel-theseer/Makefile (revision 333102) +++ devel/pear-channel-theseer/Makefile (working copy) @@ -11,7 +11,6 @@ PEAR_CHANNEL_HOST= pear.netpirates.net -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" .include Index: devel/pear-codegen/Makefile =================================================================== --- devel/pear-codegen/Makefile (revision 333102) +++ devel/pear-codegen/Makefile (working copy) @@ -14,7 +14,6 @@ PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-ezc_Base/Makefile =================================================================== --- devel/pear-ezc_Base/Makefile (revision 333102) +++ devel/pear-ezc_Base/Makefile (working copy) @@ -20,7 +20,6 @@ PEAR_CHANNEL= ezc PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-ezc_ConsoleTools/Makefile =================================================================== --- devel/pear-ezc_ConsoleTools/Makefile (revision 333102) +++ devel/pear-ezc_ConsoleTools/Makefile (working copy) @@ -22,7 +22,6 @@ PEAR_CHANNEL= ezc PEAR_AUTOINSTALL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-pdepend-staticReflection/Makefile =================================================================== --- devel/pear-pdepend-staticReflection/Makefile (revision 333102) +++ devel/pear-pdepend-staticReflection/Makefile (working copy) @@ -22,7 +22,6 @@ PEAR_AUTOINSTALL= yes IGNORE_WITH_PHP=52 -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include Index: devel/pear-phing/Makefile =================================================================== --- devel/pear-phing/Makefile (revision 333102) +++ devel/pear-phing/Makefile (working copy) @@ -18,7 +18,6 @@ BUILD_DEPENDS+= ${PEARDIR}/.channels/pear.phing.info.reg:${PORTSDIR}/devel/pear-channel-phing RUN_DEPENDS+= ${PEARDIR}/.channels/pear.phing.info.reg:${PORTSDIR}/devel/pear-channel-phing -NO_STAGE= yes .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include