aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits/hs-gtk2hs/files/pkg-install.in
diff options
context:
space:
mode:
Diffstat (limited to 'x11-toolkits/hs-gtk2hs/files/pkg-install.in')
-rw-r--r--x11-toolkits/hs-gtk2hs/files/pkg-install.in19
1 files changed, 0 insertions, 19 deletions
diff --git a/x11-toolkits/hs-gtk2hs/files/pkg-install.in b/x11-toolkits/hs-gtk2hs/files/pkg-install.in
deleted file mode 100644
index 05bb2cf14e0a..000000000000
--- a/x11-toolkits/hs-gtk2hs/files/pkg-install.in
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-pkglibdir=$PKG_PREFIX/lib/gtk2hs
-ghcpkg=%%LOCALBASE%%/bin/ghc-pkg
-
-case "$2" in
-POST-INSTALL)
- for p in %%PKGS%%; do
- $ghcpkg --auto-ghci-libs update $pkglibdir/$p.package.conf ;
- done
- /bin/rm -f %%LOCALBASE%%/lib/ghc-%%GHC_VERSION%%/package.conf.old
- ;;
-DEINSTALL)
- for p in %%PKGS%%; do
- $ghcpkg unregister $p-%%PORTVERSION%% ;
- done
- /bin/rm -f %%LOCALBASE%%/lib/ghc-%%GHC_VERSION%%/package.conf.old
- ;;
-esac