1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/x11-toolkits/py-gnome2/pkg-install
Joe Marcus Clarke f9b3f6d1f3 Fix coexistence check for py-gnome.
PR:	50900
2003-04-13 23:31:54 +00:00

17 lines
339 B
Bash

#!/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
if pkg_info | grep "^py-gnome-1\.4\.[0-9]"; then
echo "py-gnome for GTK+ 1.x was detected."
echo "This packages cannot coexist with py-gnome."
false
fi
fi