summaryrefslogtreecommitdiffstats
path: root/x11/gnome2-lite/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'x11/gnome2-lite/pkg-install')
-rw-r--r--x11/gnome2-lite/pkg-install17
1 files changed, 0 insertions, 17 deletions
diff --git a/x11/gnome2-lite/pkg-install b/x11/gnome2-lite/pkg-install
deleted file mode 100644
index 2480ec609..000000000
--- a/x11/gnome2-lite/pkg-install
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-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 desktop."
- echo ""
- echo "Please deinstall the GNOME 1.x desktop before installing this package."
- false
- fi
- done
-fi