diff options
author | jlam <jlam@pkgsrc.org> | 2006-07-05 06:53:12 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-07-05 06:53:12 +0000 |
commit | ac0baf9615030116b355395b6e4b52c7403936aa (patch) | |
tree | c1cac8d3ff0a7fb5ff1a16e24073b5e91efd1aa7 /games/xscavenger | |
parent | 5f86d6a2d2802f78f83b3bec79ec92f376fe02af (diff) | |
download | pkgsrc-ac0baf9615030116b355395b6e4b52c7403936aa.tar.gz |
Drop use of INSTALL_SRC and DEINSTALL_SRC and instead set the proper
variables so that the default INSTALL/DEINSTALL scripts from the
pkginstall framework do the right thing. Where possible, move some
post-install directions for package setup into MESSAGE files so that
they may be re-inspected by querying the installed package using
"pkg_info -D ...".
Diffstat (limited to 'games/xscavenger')
-rw-r--r-- | games/xscavenger/DEINSTALL | 19 | ||||
-rw-r--r-- | games/xscavenger/Makefile | 6 |
2 files changed, 2 insertions, 23 deletions
diff --git a/games/xscavenger/DEINSTALL b/games/xscavenger/DEINSTALL deleted file mode 100644 index 1f8bf360997..00000000000 --- a/games/xscavenger/DEINSTALL +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -# -# $NetBSD: DEINSTALL,v 1.2 2003/08/30 20:22:54 jlam Exp $ -# - -PKGNAME=$1 - -case $2 in -POST-DEINSTALL) - cat << EOF -============================================================================= -If you won't be using ${PKGNAME} any longer, you may want to remove the -scores and progress files that were copied to ~/.scavenger/ of every -user playing it. -============================================================================= -EOF - ;; -esac -exit 0 diff --git a/games/xscavenger/Makefile b/games/xscavenger/Makefile index f25fd20d46f..aa19cdfffea 100644 --- a/games/xscavenger/Makefile +++ b/games/xscavenger/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.15 2006/06/15 13:31:29 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2006/07/05 06:53:13 jlam Exp $ # DISTNAME= xscavenger-1.4.4 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= games x11 MASTER_SITES= http://www.xdr.com/dash/ EXTRACT_SUFX= .tgz @@ -17,8 +17,6 @@ USE_IMAKE= yes CONFIGURE_DIRS= src BUILD_DIRS= ${CONFIGURE_DIRS} NO_INSTALL_MANPAGES= yes -DEINSTALL_SRC= ${PKGDIR}/DEINSTALL -INSTALL_SRC= # empty CPPFLAGS+= -DSOUNDDEV="\"${DEVOSSSOUND}\"" |