summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/abiword/DEINSTALL28
-rw-r--r--editors/abiword/INSTALL29
2 files changed, 0 insertions, 57 deletions
diff --git a/editors/abiword/DEINSTALL b/editors/abiword/DEINSTALL
deleted file mode 100644
index 2f4b20231d8..00000000000
--- a/editors/abiword/DEINSTALL
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#
-# $NetBSD: DEINSTALL,v 1.1 2001/10/31 21:22:29 zuntum Exp $
-
-PKGNAME=$1
-STAGE=$2
-
-RM="@RM@"
-RMDIR="@RMDIR@"
-TRUE="@TRUE@"
-
-ABIDIR=${PKG_PREFIX}/share/AbiSuite
-
-case ${STAGE} in
-DEINSTALL)
- ${RM} -f ${ABIDIR}/dictionary/american.hash
- ${RMDIR} -p ${ABIDIR}/dictionary 2>/dev/null || ${TRUE}
- ;;
-
-POST-DEINSTALL)
- ;;
-
-*)
- echo "Unexpected argument: ${STAGE}"
- exit 1
- ;;
-esac
-exit 0
diff --git a/editors/abiword/INSTALL b/editors/abiword/INSTALL
deleted file mode 100644
index ea3ead78eb2..00000000000
--- a/editors/abiword/INSTALL
+++ /dev/null
@@ -1,29 +0,0 @@
-#! /bin/sh
-#
-# $NetBSD: INSTALL,v 1.1 2001/10/31 21:22:30 zuntum Exp $
-
-PKGNAME=$1
-STAGE=$2
-
-MKDIR="@MKDIR@"
-LN="@LN@"
-RM="@RM@"
-
-ABIDIR=${PKG_PREFIX}/share/AbiSuite
-
-case ${STAGE} in
-PRE-INSTALL)
- ;;
-
-POST-INSTALL)
- ${MKDIR} ${ABIDIR}/dictionary
- ${RM} -f ${ABIDIR}/dictionary/american.hash
- ${LN} -sf ../../../lib/american.hash ${ABIDIR}/dictionary/american.hash
- ;;
-
-*)
- echo "Unexpected argument: ${STAGE}"
- exit 1
- ;;
-esac
-exit 0