summaryrefslogtreecommitdiffstats
path: root/x11/gnome2/pkg-install
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-09-19 03:03:42 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-09-19 03:03:42 +0800
commit2fba1a2d8eb914d118a18389a4efb30f38717605 (patch)
tree3b697eb12be964b6325828602df4493daa80cf64 /x11/gnome2/pkg-install
parentb74e3cc636dc7243d7c67a3d8b5ca451be756d4c (diff)
downloadmarcuscom-ports-2fba1a2d8eb914d118a18389a4efb30f38717605.tar
marcuscom-ports-2fba1a2d8eb914d118a18389a4efb30f38717605.tar.gz
marcuscom-ports-2fba1a2d8eb914d118a18389a4efb30f38717605.tar.bz2
marcuscom-ports-2fba1a2d8eb914d118a18389a4efb30f38717605.tar.lz
marcuscom-ports-2fba1a2d8eb914d118a18389a4efb30f38717605.tar.xz
marcuscom-ports-2fba1a2d8eb914d118a18389a4efb30f38717605.tar.zst
marcuscom-ports-2fba1a2d8eb914d118a18389a4efb30f38717605.zip
Remove these ports now that they have been added into the FreeBSD ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1224 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnome2/pkg-install')
-rw-r--r--x11/gnome2/pkg-install21
1 files changed, 0 insertions, 21 deletions
diff --git a/x11/gnome2/pkg-install b/x11/gnome2/pkg-install
deleted file mode 100644
index 1324bb12a..000000000
--- a/x11/gnome2/pkg-install
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-if [ -n "${PACKAGE_BUILDING}" ]; then
- exit 0
-fi
-
-PATH=/bin:/usr/bin:/sbin:/usr/sbin:${PATH}
-export PATH
-
-if [ "$2" = "PRE-INSTALL" ]; then
- GNOME_ONE_DESKTOP="gnomecore gnomeapplets gnomemedia gnomeutils gtop libgtop sawfish nautilus gedit xalf bugbuddy gnomegames gdm eog ggv gnomeaudio"
- for package in ${GNOME_ONE_DESKTOP}; do
- if pkg_info | grep "^${package}-[0-9]" >/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