summaryrefslogtreecommitdiff
path: root/misc/222upgrade
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1999-04-21 04:59:59 +0000
committerSatoshi Asami <asami@FreeBSD.org>1999-04-21 04:59:59 +0000
commitff9f1c323fc2f93c1047b8e922f214c6658645c8 (patch)
tree4f3494c52c6771fcc2f278c305104a59e83b6c84 /misc/222upgrade
parentUpgrade 'korganizer' to v1.1. (diff)
(1) Move /var/db/pkg/.mkversion to /var/db/port.mkversion.
Requested by: jkh (2) Don't let user pkg_delete the "upgrade kits". Requested by: Toshihiko Kodama <kodama@ayame.mfd.cs.fujitsu.co.jp>
Notes
Notes: svn path=/head/; revision=18041
Diffstat (limited to 'misc/222upgrade')
-rw-r--r--misc/222upgrade/Makefile6
-rw-r--r--misc/222upgrade/pkg-install2
-rw-r--r--misc/222upgrade/pkg-req5
3 files changed, 11 insertions, 2 deletions
diff --git a/misc/222upgrade/Makefile b/misc/222upgrade/Makefile
index 02c7f45321b1..56a708bc7543 100644
--- a/misc/222upgrade/Makefile
+++ b/misc/222upgrade/Makefile
@@ -3,7 +3,7 @@
# Date created: 18 Apr 1997
# Whom: asami
#
-# $Id: Makefile,v 1.4 1999/03/10 22:10:49 asami Exp $
+# $Id: Makefile,v 1.5 1999/03/29 07:09:44 asami Exp $
#
DISTNAME= 222upgrade-1998.03.08
@@ -28,4 +28,8 @@ do-install:
${SED} -e "s/%%VERSION%%/${BSDPORTMKVERSION}/" ${PKGDIR}/INSTALL \
> ${PKGINSTALL}
+deinstall:
+ @${ECHO} "You can't delete this port."
+ @${FALSE}
+
.include <bsd.port.post.mk>
diff --git a/misc/222upgrade/pkg-install b/misc/222upgrade/pkg-install
index 83a9f3edb0df..8ed8de67d62f 100644
--- a/misc/222upgrade/pkg-install
+++ b/misc/222upgrade/pkg-install
@@ -2,4 +2,4 @@
if [ "$2" != "PRE-INSTALL" ]; then
exit 0
fi
-echo %%VERSION%% > /var/db/pkg/.mkversion
+echo %%VERSION%% > /var/db/port.mkversion
diff --git a/misc/222upgrade/pkg-req b/misc/222upgrade/pkg-req
new file mode 100644
index 000000000000..1eb81c651314
--- /dev/null
+++ b/misc/222upgrade/pkg-req
@@ -0,0 +1,5 @@
+#!/bin/sh
+if [ $2 = "DEINSTALL" ]; then
+ echo "Package $1 cannot be removed -- to do so will render your system useless."
+ exit 1
+fi