diff options
author | nork <nork@FreeBSD.org> | 2003-06-09 00:02:54 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-06-09 00:02:54 +0800 |
commit | 74022fc501ce6ea9d7ad88e2d40f20e9bc6f5b6f (patch) | |
tree | 5f722ef616d48b4c4ab6f5be5fdcf2604b860839 /mail/pear-Mail_Mime | |
parent | 81483c0a0ff2dde9e40542539d1fdc5bbc1b040b (diff) | |
download | freebsd-ports-gnome-74022fc501ce6ea9d7ad88e2d40f20e9bc6f5b6f.tar.gz freebsd-ports-gnome-74022fc501ce6ea9d7ad88e2d40f20e9bc6f5b6f.tar.zst freebsd-ports-gnome-74022fc501ce6ea9d7ad88e2d40f20e9bc6f5b6f.zip |
Remove pkg-install and pkg-deinstall.
Bump PORTREVISION accordingly.
Submitted by: Thierry Thomas <thierry@pompo.net>
Pointy hat to: myself
Diffstat (limited to 'mail/pear-Mail_Mime')
-rw-r--r-- | mail/pear-Mail_Mime/Makefile | 2 | ||||
-rw-r--r-- | mail/pear-Mail_Mime/pkg-deinstall | 13 | ||||
-rw-r--r-- | mail/pear-Mail_Mime/pkg-install | 14 |
3 files changed, 1 insertions, 28 deletions
diff --git a/mail/pear-Mail_Mime/Makefile b/mail/pear-Mail_Mime/Makefile index 713fa196c8cf..7d7469af6bbe 100644 --- a/mail/pear-Mail_Mime/Makefile +++ b/mail/pear-Mail_Mime/Makefile @@ -7,7 +7,7 @@ PORTNAME= Mail_Mime PORTVERSION= 1.2.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail www MAINTAINER= ports@FreeBSD.org diff --git a/mail/pear-Mail_Mime/pkg-deinstall b/mail/pear-Mail_Mime/pkg-deinstall deleted file mode 100644 index c17e9d19ced0..000000000000 --- a/mail/pear-Mail_Mime/pkg-deinstall +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Remove package declaration from PEAR's registry. - -if [ x$2 != xDEINSTALL ]; then - exit -fi -PKG_NAME=${1%%-[0-9._]*} -PACKAGE=$(echo $PKG_NAME | sed 's/pear-//') - -${PKG_PREFIX}/bin/pear uninstall -r ${PACKAGE} || true diff --git a/mail/pear-Mail_Mime/pkg-install b/mail/pear-Mail_Mime/pkg-install deleted file mode 100644 index ed2f91c6f145..000000000000 --- a/mail/pear-Mail_Mime/pkg-install +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Register the package $1 in the port registry - -PREFIX=${PKG_PREFIX:-/usr/local} -PEAR=${PREFIX}/bin/pear -PKGREGDIR=${PREFIX}/.PEAR.pkg/$1 - -[ "x$1" = "x" ] && exit 1 -if [ "x$2" = "xPOST-INSTALL" ]; then - ${PEAR} install -r -f ${PKGREGDIR}/package.xml -fi |