summaryrefslogtreecommitdiff
path: root/debian/g77.postinst.in
diff options
context:
space:
mode:
Diffstat (limited to 'debian/g77.postinst.in')
-rw-r--r--debian/g77.postinst.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/g77.postinst.in b/debian/g77.postinst.in
new file mode 100644
index 0000000..6c05b6d
--- /dev/null
+++ b/debian/g77.postinst.in
@@ -0,0 +1,15 @@
+#! /bin/sh -e
+
+# remove the doc dir, if it's still a directory and replace with a symlink
+pkg=`basename $0 .postinst`
+if [ ! -L /usr/share/doc/$pkg ]; then
+ rm -rf /usr/share/doc/$pkg
+ ln -s cpp /usr/share/doc/$pkg
+fi
+
+update-alternatives --install /usr/bin/f77 f77 /usr/bin/g77 20 \
+ @GFDL@--slave /usr/share/man/man1/f77.1.gz f77.1.gz /usr/share/man/man1/g77.1.gz
+
+#DEBHELPER#
+
+exit 0