diff options
-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 |