diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-26 03:54:09 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-26 03:54:09 +0000 |
commit | 34e89ab8392566d3214ac1b9ecc2dd006abed7b9 (patch) | |
tree | d2b01dd75b75edffecca9a30a9fb09a047d33386 /devel/horde-chora | |
parent | d34b2b1ee3faf8c842017e914405d2828b3c49d7 (diff) | |
download | FreeBSD-ports-34e89ab8392566d3214ac1b9ecc2dd006abed7b9.zip FreeBSD-ports-34e89ab8392566d3214ac1b9ecc2dd006abed7b9.tar.gz |
${PERL} -> ${REINPLACE_CMD}
PR: 39856
Submitted by: maintainer
Diffstat (limited to 'devel/horde-chora')
-rw-r--r-- | devel/horde-chora/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/devel/horde-chora/Makefile b/devel/horde-chora/Makefile index c8230b1..0329a05 100644 --- a/devel/horde-chora/Makefile +++ b/devel/horde-chora/Makefile @@ -35,6 +35,8 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/enscript:${PORTSDIR}/print/enscript-letter .endif NO_BUILD= yes +USE_REINPLACE= yes +REINPLACE_ARGS= -i.beforeChora # Specify where your repository belongs. # (You can reconfigure it after installation anyway) @@ -70,21 +72,19 @@ do-install: ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor - @${PERL} -pi -e "s:%%CVSROOT%%:${CVSROOT}:;s:%%CONFDIR%%:${CONFDIR}:" \ + @${REINPLACE_CMD} -e "s:%%CVSROOT%%:${CVSROOT}:;s:%%CONFDIR%%:${CONFDIR}:" \ ${CONFDIR}/cvsroots.php + @${RM} ${CONFDIR}/cvsroots.php.beforeChora @${CHOWN} -R www:www ${CHORADIR} @${CHMOD} -R o-rwx ${CONFDIR} @${CP} -p ${FILESDIR}/httpd.conf.chora ${HORDE_INC} - @${PERL} -pi -e "s:/home/httpd/html/horde/chora:${CHORADIR}:g" \ + @${REINPLACE_CMD} -e "s:/home/httpd/html/horde/chora:${CHORADIR}:g" \ ${HORDE_INC}/httpd.conf.chora - @${CP} -p ${HORDEDIR}/config/registry.php \ - ${HORDEDIR}/config/registry.php.beforeChora - @${CP} -p ${HORDEDIR}/config/mime_drivers.php \ - ${HORDEDIR}/config/mime_drivers.php.beforeChora - @${PERL} -pi -e "s://UNCOMMENTWHENINSTCHORA::" \ + @${RM} ${HORDE_INC}/httpd.conf.chora.beforeChora + @${REINPLACE_CMD} -e "s://UNCOMMENTWHENINSTCHORA::" \ ${HORDEDIR}/config/registry.php .if !defined(WITHOUT_ENSCRIPT) - @${PERL} -pi -e "s://UNCOMMENTWHENINSTCHORA::" \ + @${REINPLACE_CMD} -e "s://UNCOMMENTWHENINSTCHORA::" \ ${HORDEDIR}/config/mime_drivers.php .endif @${CP} -p ${HORDEDIR}/config/registry.php \ |