summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-09-09 18:39:34 +0000
committerwiz <wiz@pkgsrc.org>2002-09-09 18:39:34 +0000
commitd155797ab44d21d67f15eb1355b41eb1aff13a2a (patch)
treee96dce7a3cf020e81a7777ff9fa0579774d02aeb /editors
parent9396443216b88378be5f33484e18b71795ea1cc7 (diff)
downloadpkgsrc-d155797ab44d21d67f15eb1355b41eb1aff13a2a.tar.gz
Remove INSTALL and DEINSTALL scripts, as requested in pkg/17451 and 18058.
Diffstat (limited to 'editors')
-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