summaryrefslogtreecommitdiff
path: root/x11/gtk/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'x11/gtk/INSTALL')
-rw-r--r--x11/gtk/INSTALL17
1 files changed, 17 insertions, 0 deletions
diff --git a/x11/gtk/INSTALL b/x11/gtk/INSTALL
new file mode 100644
index 00000000000..bd87789dd77
--- /dev/null
+++ b/x11/gtk/INSTALL
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1 2004/01/18 01:11:40 jlam Exp $
+
+case ${STAGE} in
+POST-INSTALL)
+ if [ "${PKG_PREFIX}" != "${LOCALBASE}" ]; then
+ ${LN} -fs ${PREFIX}/share/aclocal/gtk.m4 \
+ ${LOCALBASE}/share/aclocal/gtk.m4
+ fi
+ ;;
+DEINSTALL)
+ if [ "${PKG_PREFIX}" != "${LOCALBASE}" ]; then
+ ${RM} -f ${LOCALBASE}/share/aclocal/gtk.m4
+ fi
+ ;;
+esac