diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-05-02 22:59:47 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-05-02 22:59:47 +0000 |
commit | e42e4f0f1505b99aad484deb5b4017ec46bc3bfc (patch) | |
tree | fe73ff25a9cd54143e726e1938d004b4e7d2f48f /www/asp2php | |
parent | 006a41da86b56de9af3d0fe9fc00661c1880f47c (diff) | |
download | ports-e42e4f0f1505b99aad484deb5b4017ec46bc3bfc.tar.gz ports-e42e4f0f1505b99aad484deb5b4017ec46bc3bfc.zip |
Update to 0.76.5
PR: 37690
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Notes
Notes:
svn path=/head/; revision=58473
Diffstat (limited to 'www/asp2php')
-rw-r--r-- | www/asp2php/Makefile | 10 | ||||
-rw-r--r-- | www/asp2php/distinfo | 2 | ||||
-rw-r--r-- | www/asp2php/files/patch-Makefile | 15 |
3 files changed, 7 insertions, 20 deletions
diff --git a/www/asp2php/Makefile b/www/asp2php/Makefile index 27b8c4aadd4c..a76e271cfbc2 100644 --- a/www/asp2php/Makefile +++ b/www/asp2php/Makefile @@ -6,9 +6,9 @@ # PORTNAME= asp2php -PORTVERSION= 0.76.4a +PORTVERSION= 0.76.5 CATEGORIES= www -MASTER_SITES= http://home.i1.net/~naken/asp2php/ +MASTER_SITES= http://65.108.58.129/asp2php/ MAINTAINER= ports@FreeBSD.org @@ -29,8 +29,10 @@ PLIST_SUB+= WANT_GTK="@comment " .endif post-patch: - @${PERL} -pi -e 's|^CC=|#CC=|g ; \ - s|`gtk-config|`\$$\{GTK_CONFIG\}|g' ${WRKSRC}/Makefile + @${FIND} ${WRKSRC} -name "Makefile" | ${XARGS} ${PERL} -pi -e \ + 's|^CC=|#CC=|g ; \ + s| make| \$$\{MAKE\}|g ; \ + s|`gtk-config|`\$$\{GTK_CONFIG\}|g' do-install: ${INSTALL_PROGRAM} ${WRKSRC}/asp2php ${PREFIX}/bin diff --git a/www/asp2php/distinfo b/www/asp2php/distinfo index 15d25be00bc1..8ba218dfde22 100644 --- a/www/asp2php/distinfo +++ b/www/asp2php/distinfo @@ -1 +1 @@ -MD5 (asp2php-0.76.4a.tar.gz) = 3fe1f334828f597e3875e2204c80c61d +MD5 (asp2php-0.76.5.tar.gz) = 26c73f4d365dc159bbc6fa7a946056ab diff --git a/www/asp2php/files/patch-Makefile b/www/asp2php/files/patch-Makefile deleted file mode 100644 index ae1664367e99..000000000000 --- a/www/asp2php/files/patch-Makefile +++ /dev/null @@ -1,15 +0,0 @@ ---- Makefile.orig Sun Mar 31 13:05:47 2002 -+++ Makefile Sun Mar 31 13:06:07 2002 -@@ -1,5 +1,4 @@ - --CC=gcc - #FLAGS=-DDEBUG - - default: -@@ -38,5 +37,5 @@ - rm -f *.o - - gui: -- $(CC) -o gtkasp2php gtkasp2php.c `gtk-config --cflags` `gtk-config --libs` -+ $(CC) -o gtkasp2php gtkasp2php.c `${GTK_CONFIG} --cflags` `${GTK_CONFIG} --libs` - |