diff options
author | tobez <tobez@FreeBSD.org> | 2006-03-06 18:14:39 +0800 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2006-03-06 18:14:39 +0800 |
commit | b2773cb47a548852d86490c648f3ee1f5e8a0106 (patch) | |
tree | 2ac782547f105138271e2542294aedfc329be2e7 | |
parent | 140f6c6198b3a75dcdacf6095b148263ec431407 (diff) | |
download | freebsd-ports-gnome-b2773cb47a548852d86490c648f3ee1f5e8a0106.tar.gz freebsd-ports-gnome-b2773cb47a548852d86490c648f3ee1f5e8a0106.tar.zst freebsd-ports-gnome-b2773cb47a548852d86490c648f3ee1f5e8a0106.zip |
Fix PerlIO-related coredump. While at it, use EXAMPLESDIR throughout.
Bump PORTREVISION.
PR: 93981
Submitted by: Matthias Meyser <Meyser@xenet.de>
Approved by: portmgr (erwin)
-rw-r--r-- | lang/eperl/Makefile | 7 | ||||
-rw-r--r-- | lang/eperl/pkg-plist | 52 |
2 files changed, 30 insertions, 29 deletions
diff --git a/lang/eperl/Makefile b/lang/eperl/Makefile index ec20d1b9121a..2c2c97794ea2 100644 --- a/lang/eperl/Makefile +++ b/lang/eperl/Makefile @@ -7,6 +7,7 @@ PORTNAME= eperl PORTVERSION= 2.2.14 +PORTREVISION= 1 CATEGORIES= lang www perl5 MASTER_SITES= ${MASTER_SITE_OSSP} MASTER_SITE_SUBDIR= tool/${PORTNAME} @@ -47,10 +48,10 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/eperl ${PREFIX}/bin/eperl ${INSTALL_MAN} ${WRKSRC}/eperl.1 ${PREFIX}/man/man1/eperl.1 .if !defined(NOPORTDOCS) - @if [ ! -d ${PREFIX}/share/examples/eperl ]; then \ - ${MKDIR} ${PREFIX}/share/examples/eperl; \ + @if [ ! -d ${EXAMPLESDIR} ]; then \ + ${MKDIR} ${EXAMPLESDIR}; \ fi - ${CP} ${WRKSRC}/eg/* ${PREFIX}/share/examples/eperl/ + ${CP} ${WRKSRC}/eg/* ${EXAMPLESDIR}/ .endif .if defined(INSTALL_ALSO_AS_SSSL) @if [ ! -d ${PREFIX}/www/cgi-bin ]; then \ diff --git a/lang/eperl/pkg-plist b/lang/eperl/pkg-plist index 40563ec24294..25be2ae105ee 100644 --- a/lang/eperl/pkg-plist +++ b/lang/eperl/pkg-plist @@ -3,29 +3,29 @@ bin/eperl %%SSSL%%@exec echo "AddType application/x-httpd-eperl .phtml .eperl .epl" >>%D/etc/apache/srm.conf %%SSSL%%@exec echo "Action application/x-httpd-eperl /cgi-bin/nph-eperl" >>%D/etc/apache/srm.conf %%SSSL%%@unexec grep -v "application/x-httpd-eperl" %D/etc/apache/srm.conf >%D/etc/apache/srm.conf.bak; mv %D/etc/apache/srm.conf.bak %D/etc/apache/srm.conf -share/examples/eperl/00README -share/examples/eperl/demo.cgipm.phtml -share/examples/eperl/demo.cgipm.iphtml -share/examples/eperl/demo.env.phtml -share/examples/eperl/demo.env.iphtml -share/examples/eperl/demo.errout.phtml -share/examples/eperl/demo.errout.iphtml -share/examples/eperl/demo.errsyn.phtml -share/examples/eperl/demo.errsyn.iphtml -share/examples/eperl/demo.func.phtml -share/examples/eperl/demo.func.iphtml -share/examples/eperl/demo.html.phtml -share/examples/eperl/demo.html.iphtml -share/examples/eperl/demo.image.phtml -share/examples/eperl/demo.image.iphtml -share/examples/eperl/demo.lwp.phtml -share/examples/eperl/demo.lwp.iphtml -share/examples/eperl/demo.net.phtml -share/examples/eperl/demo.net.iphtml -share/examples/eperl/demo.pp.phtml -share/examples/eperl/demo.pp.iphtml -share/examples/eperl/demo.table.phtml -share/examples/eperl/demo.table.iphtml -share/examples/eperl/demo.text.phtml -share/examples/eperl/demo.text.iphtml -@dirrm share/examples/eperl +%%PORTDOCS%%%%EXAMPLESDIR%%/00README +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.cgipm.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.cgipm.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.env.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.env.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.errout.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.errout.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.errsyn.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.errsyn.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.func.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.func.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.html.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.html.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.image.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.image.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.lwp.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.lwp.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.net.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.net.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.pp.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.pp.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.table.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.table.iphtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.text.phtml +%%PORTDOCS%%%%EXAMPLESDIR%%/demo.text.iphtml +%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% |