diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-07-07 18:34:07 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-07-07 18:34:07 +0000 |
commit | 281a55555a7d66ba836bf27f7eb1ad250cadafa4 (patch) | |
tree | aee2285517dec3476da0b7107d9ebce773a63698 /mail/imp | |
parent | ffdf5e4fc2c28121e636af8ef16c4715d166e533 (diff) | |
download | ports-281a55555a7d66ba836bf27f7eb1ad250cadafa4.tar.gz ports-281a55555a7d66ba836bf27f7eb1ad250cadafa4.zip |
PERL -> REINPLACE_CMD
PR: 40289
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=62590
Diffstat (limited to 'mail/imp')
-rw-r--r-- | mail/imp/Makefile | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/mail/imp/Makefile b/mail/imp/Makefile index 582d3ae84573..d71c04a3b821 100644 --- a/mail/imp/Makefile +++ b/mail/imp/Makefile @@ -93,6 +93,9 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell .endif NO_BUILD= yes +USE_REINPLACE= yes + +REINPLACE_ARGS= -i.beforeImp DOCS= COPYING README docs/CHANGES docs/CREDITS docs/DATABASE \ docs/HELP docs/INSTALL docs/SECURITY docs/KNOWN_BUGS \ docs/PACKAGES @@ -173,19 +176,17 @@ do-install: ${CP} -Rp ${WRKSRC}/config ${WRKSRC}/graphics ${WRKSRC}/lib ${IMPDIR} ${CP} -Rp ${WRKSRC}/locale ${WRKSRC}/scripts ${WRKSRC}/templates ${IMPDIR} ${CP} -p ${WRKSRC}/*.php3 ${WRKSRC}/*.css ${IMPDIR} - ${PERL} -pi -e "s:/usr/bin/ispell:${LOCALBASE}/bin/ispell:g" \ - ${IMPDIR}/config/defaults.php3.dist - ${PERL} -pi -e "s:/usr/bin/wvHtml:${LOCALBASE}/bin/wvHtml:g" \ - ${IMPDIR}/config/defaults.php3.dist - ${PERL} -pi -e "s:/usr/bin/xlHtml:${LOCALBASE}/bin/xlhtml:g" \ + ${REINPLACE_CMD} -e "s:/usr/bin/ispell:${LOCALBASE}/bin/ispell:g ; \ + s:/usr/bin/wvHtml:${LOCALBASE}/bin/wvHtml:g ; \ + s:/usr/bin/xlHtml:${LOCALBASE}/bin/xlhtml:g ; \ + s:/bin/tar:/usr/bin/tar:g ; \ + s:/usr/bin/zipinfo:${LOCALBASE}/bin/zipinfo:g" \ ${IMPDIR}/config/defaults.php3.dist - ${PERL} -pi -e "s:/bin/tar:/usr/bin/tar:g" ${IMPDIR}/config/defaults.php3.dist - ${PERL} -pi -e "s:/usr/bin/zipinfo:${LOCALBASE}/bin/zipinfo:g" \ - ${IMPDIR}/config/defaults.php3.dist - ${PERL} -pi -e "s:sh ./secure.sh:${HORDESBIN}/horde_secure.sh:g" \ - ${IMPDIR}/templates/index/imp_notconfigured.inc - ${PERL} -pi -e "s:sh ./install.sh:${HORDESBIN}/horde_setup.sh:g" \ + @${RM} ${IMPDIR}/config/defaults.php3.dist.beforeImp + ${REINPLACE_CMD} -e "s:sh ./secure.sh:${HORDESBIN}/horde_secure.sh:g ; \ + s:sh ./install.sh:${HORDESBIN}/horde_setup.sh:g" \ ${IMPDIR}/templates/index/imp_notconfigured.inc + @${RM} ${IMPDIR}/templates/index/imp_notconfigured.inc.beforeImp @if [ ! -f ${IMPDIR}/config/defaults.php3 ]; then \ ${CP} ${IMPDIR}/config/defaults.php3.dist ${IMPDIR}/config/defaults.php3; \ fi @@ -205,7 +206,7 @@ do-install: (if [ ! -f ${APACHE_CONF}.beforeIMP ] ; then \ ${ECHO} "===> Updating ${APACHE_CONF}..." ; \ ${CP} -p ${.CURDIR}/httpd.conf.imp ${WRKDIR}/httpd.conf.imp ; \ - ${PERL} -pi -e "s:/home/httpd/html/horde/imp:${IMPDIR}:g" \ + ${REINPLACE_CMD} -e "s:/home/httpd/html/horde/imp:${IMPDIR}:g" \ ${WRKDIR}/httpd.conf.imp ; \ ${CP} -p ${APACHE_CONF} ${APACHE_CONF}.beforeIMP ; \ ${GREP} -qw 'Added for IMP' ${APACHE_CONF} || ${CAT} ${WRKDIR}/httpd.conf.imp \ @@ -213,7 +214,10 @@ do-install: fi) ; \ fi) .if !defined(NOPORTDOCS) - ${PERL} -pi -e "s:/home/httpd/html/horde/imp:${IMPDIR}:g" ${WRKSRC}/docs/SECURITY + ${REINPLACE_CMD} -e "s:/home/httpd/html/horde:${HORDEDIR}:g ; \ + s:/home/httpd/horde-phplib:${HORDEDIR}/phplib:g ; \ + s:nobody:www:g" \ + ${WRKSRC}/docs/SECURITY ${MKDIR} ${DOCSDIR} .for FILE in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} @@ -248,6 +252,7 @@ post-install: @${ECHO} "IMAP-UW; you may want to reinstall it with SSL support, or" @${ECHO} "if you need an SSL connection to your IMAP server, you can" @${ECHO} "install the port security/stunnel." + @${ECHO} "Note: without SSL, you have to choose the IMAP port 143/notls" @${ECHO} "******************************************************************" .include <bsd.port.mk> |