diff options
author | Alex Dupre <ale@FreeBSD.org> | 2005-04-15 08:12:00 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2005-04-15 08:12:00 +0000 |
commit | 3d2c4e7e4b0bf24918359a2ceff241dc337df5c3 (patch) | |
tree | f0a5ecd28d644b4378114c2bd084540bd4c86204 /lang/php53 | |
parent | 20becbe1a024666eb3c0f9574cd611aa0fc5cb1b (diff) |
Fix definitely pear package deinstallation.
PR: ports/79830
Submitted by: leeym
Notes
Notes:
svn path=/head/; revision=133394
Diffstat (limited to 'lang/php53')
-rw-r--r-- | lang/php53/Makefile.pear | 2 | ||||
-rw-r--r-- | lang/php53/pkg-plist.pear | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/lang/php53/Makefile.pear b/lang/php53/Makefile.pear index b69f41a26bd1..75ed3861d93d 100644 --- a/lang/php53/Makefile.pear +++ b/lang/php53/Makefile.pear @@ -1,4 +1,4 @@ -PORTREVISION= 2 +PORTREVISION= 3 USE_GNOME= libxml2 diff --git a/lang/php53/pkg-plist.pear b/lang/php53/pkg-plist.pear index 4bb56f13a43d..5d6e41f0a15a 100644 --- a/lang/php53/pkg-plist.pear +++ b/lang/php53/pkg-plist.pear @@ -1,7 +1,7 @@ bin/pear -lib/php/pear/.filemap -lib/php/pear/.lock @exec mkdir -p %D/lib/php/pear/.registry +@exec touch %D/lib/php/pear/.filemap +@exec touch %D/lib/php/pear/.lock share/pear/bootstrap/Archive/Tar.php share/pear/bootstrap/PEAR.php share/pear/bootstrap/System.php @@ -34,8 +34,10 @@ share/pear/bootstrap/PEAR/Remote.php share/pear/bootstrap/PEAR/RunTest.php share/pear/bootstrap/XML/RPC.php share/pear/bootstrap/XML/RPC/Server.php -@dirrm lib/php/pear/.registry -@dirrm lib/php/pear +@unexec rm %D/lib/php/pear/.filemap 2> /dev/null || true +@unexec rm %D/lib/php/pear/.lock 2> /dev/null || true +@unexec rmdir %D/lib/php/pear/.registry 2> /dev/null || true +@unexec rmdir %D/lib/php/pear 2> /dev/null || true @unexec rmdir %D/lib/php 2> /dev/null || true @dirrm share/pear/bootstrap/Archive @dirrm share/pear/bootstrap/Console |