summaryrefslogtreecommitdiff
path: root/databases/pear-Doctrine12/files/pear-install.in
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 12:53:55 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 12:53:55 +0000
commit7161a29dcfd214749b78e5f32763614736e2fef7 (patch)
tree5778879abfd4c5214bbcefa100a0c68ba3184f8a /databases/pear-Doctrine12/files/pear-install.in
parent- Fix plist (diff)
Remove non staged ports without pending PR from databases
Diffstat (limited to 'databases/pear-Doctrine12/files/pear-install.in')
-rw-r--r--databases/pear-Doctrine12/files/pear-install.in19
1 files changed, 0 insertions, 19 deletions
diff --git a/databases/pear-Doctrine12/files/pear-install.in b/databases/pear-Doctrine12/files/pear-install.in
deleted file mode 100644
index 52d50417d9c3..000000000000
--- a/databases/pear-Doctrine12/files/pear-install.in
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# Register the package $1 in the port registry and optionally add a
-# non-standard channel.
-
-PREFIX=${PKG_PREFIX:=%%LOCALBASE%%}
-PEAR=%%LOCALBASE%%/bin/pear
-PKGREGDIR=${PREFIX}/share/pear/packages/$1
-CHANNEL=%%CHANNEL%%
-
-[ "x$1" = "x" ] && exit 1
-if [ "x$2" = "xPOST-INSTALL" ]; then
- if [ "x${CHANNEL}" != "x" ]; then
- ${PEAR} channel-add http://${CHANNEL}/channel.xml
- fi
- ${PEAR} install -r -n -f ${PKGREGDIR}/package.xml
-fi