diff options
author | kiri <kiri@FreeBSD.org> | 2003-11-20 20:30:34 +0000 |
---|---|---|
committer | kiri <kiri@FreeBSD.org> | 2003-11-20 20:30:34 +0000 |
commit | 5960e5ab1196753e493ae19dad163bb414360e97 (patch) | |
tree | 94d1098d088ac2315d6b112d78bd649735f1616c /textproc | |
parent | 1cc79379988512b37614ab76d86eca3bc1a282df (diff) | |
download | FreeBSD-ports-5960e5ab1196753e493ae19dad163bb414360e97.zip FreeBSD-ports-5960e5ab1196753e493ae19dad163bb414360e97.tar.gz |
Update 1.0.0.20030113 to 1.0.0.20031106.
* perl in scripts/configure is replaced by sed in-place mode.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/smartdoc-devel/Makefile | 2 | ||||
-rw-r--r-- | textproc/smartdoc-devel/distinfo | 2 | ||||
-rw-r--r-- | textproc/smartdoc-devel/scripts/configure | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/textproc/smartdoc-devel/Makefile b/textproc/smartdoc-devel/Makefile index 26b2ca5..d1e9cdd 100644 --- a/textproc/smartdoc-devel/Makefile +++ b/textproc/smartdoc-devel/Makefile @@ -6,7 +6,7 @@ # PORTNAME= smartdoc -PORTVERSION= 1.0.0.20030113 +PORTVERSION= 1.0.0.20031106 CATEGORIES= textproc java MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= kiri/smartdoc diff --git a/textproc/smartdoc-devel/distinfo b/textproc/smartdoc-devel/distinfo index e043c6e..f3a2352 100644 --- a/textproc/smartdoc-devel/distinfo +++ b/textproc/smartdoc-devel/distinfo @@ -1 +1 @@ -MD5 (smartdoc/smartdoc-1.0.0.20030113.zip) = 946e1cbffe9525234efdcec9b33b6643 +MD5 (smartdoc/smartdoc-1.0.0.20031106.zip) = 748c384d546399b76d1142d231a92ff9 diff --git a/textproc/smartdoc-devel/scripts/configure b/textproc/smartdoc-devel/scripts/configure index a2703a5..a8ef244 100644 --- a/textproc/smartdoc-devel/scripts/configure +++ b/textproc/smartdoc-devel/scripts/configure @@ -2,4 +2,5 @@ export JAVALIBDIR -perl -pi -e 's|%%JAVALIBDIR%%|$ENV{JAVALIBDIR}|g;s|%%LOCALBASE%%|$ENV{LOCALBASE}|g;' ${WRKSRC}/bin/sdoc +/usr/bin/sed -i "" -E -e "s|%%JAVALIBDIR%%|${JAVALIBDIR}|g" \ + -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/bin/sdoc |