summaryrefslogtreecommitdiffstats
path: root/x11
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-06-02 01:10:02 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-06-02 01:10:02 +0800
commit234c4f84bd7e99c9177ee831205c98e3aa2087a5 (patch)
treec53de6bc33bcc902af1320c21dcbc1f15003d64f /x11
parent5f1abf48ea6d11e026af2491e72428bcdc7fe929 (diff)
downloadmarcuscom-ports-234c4f84bd7e99c9177ee831205c98e3aa2087a5.tar
marcuscom-ports-234c4f84bd7e99c9177ee831205c98e3aa2087a5.tar.gz
marcuscom-ports-234c4f84bd7e99c9177ee831205c98e3aa2087a5.tar.bz2
marcuscom-ports-234c4f84bd7e99c9177ee831205c98e3aa2087a5.tar.lz
marcuscom-ports-234c4f84bd7e99c9177ee831205c98e3aa2087a5.tar.xz
marcuscom-ports-234c4f84bd7e99c9177ee831205c98e3aa2087a5.tar.zst
marcuscom-ports-234c4f84bd7e99c9177ee831205c98e3aa2087a5.zip
Remove pkg-install. It has served its purpose.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6359 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11')
-rw-r--r--x11/gnome2/pkg-install22
1 files changed, 0 insertions, 22 deletions
diff --git a/x11/gnome2/pkg-install b/x11/gnome2/pkg-install
deleted file mode 100644
index bfdf05775..000000000
--- a/x11/gnome2/pkg-install
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-PATH=/bin:/usr/bin:/sbin:/usr/sbin:${PATH}
-export PATH
-
-tmp_pkg_info=`mktemp -t gnome_install_pkg_info`
-trap "rm -f ${tmp_pkg_info}" 0
-
-pkg_info > ${tmp_pkg_info}
-
-if [ "$2" = "PRE-INSTALL" ]; then
- GNOME_ONE_DESKTOP="gnomecore gnomeapplets gnomemedia gnomeutils gtop libgtop sawfish nautilus xalf gnomegames gnomeaudio"
- for package in ${GNOME_ONE_DESKTOP}; do
- if grep "^${package}-[0-9]" ${tmp_pkg_info} >/dev/null 2>&1; then
- echo "${package} was detected on the system. This package is part of the GNOME 1.x"
- echo "desktop, and cannot coexist with the GNOME 2.2 desktop."
- echo ""
- echo "Please deinstall the GNOME 1.x desktop before installing this package."
- false
- fi
- done
-fi