@extra support

This commit is contained in:
naddy 2003-09-28 00:35:10 +00:00
parent 7d4be054f1
commit 0875eae332
16 changed files with 40 additions and 24 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2001/03/14 15:04:12 naddy Exp $ # $OpenBSD: DEINSTALL,v 1.2 2003/09/28 00:35:11 naddy Exp $
# #
# De-installation setup of tosha # De-installation setup of tosha
@ -38,7 +38,7 @@ fi
# #
case $2 in case $2 in
DEINSTALL) DEINSTALL)
if [ -f ${CONFIG_FILE} ]; then if [ "$PKG_DELETE_EXTRA" != Yes -a -f ${CONFIG_FILE} ]; then
do_notice "$1" do_notice "$1"
fi fi
;; ;;

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.6 2001/03/14 15:04:13 naddy Exp $ @comment $OpenBSD: PLIST,v 1.7 2003/09/28 00:35:11 naddy Exp $
bin/tosha bin/tosha
bin/pcmplay bin/pcmplay
bin/pcmfade bin/pcmfade
@ -7,3 +7,5 @@ man/man1/pcmplay.1
man/man1/pcmfade.1 man/man1/pcmfade.1
share/examples/tosha/tosharc.sample share/examples/tosha/tosharc.sample
@dirrm share/examples/tosha @dirrm share/examples/tosha
@cwd ${SYSCONFDIR}
@extra tosharc

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2001/08/11 03:17:12 brad Exp $ # $OpenBSD: DEINSTALL,v 1.2 2003/09/28 00:35:10 naddy Exp $
# #
# connect4 de-installation # connect4 de-installation
@ -8,7 +8,7 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local} PREFIX=${PKG_PREFIX:-/usr/local}
SCORE_FILE=/var/games/connect4.scores SCORE_FILE=/var/games/connect4.scores
if [ -f $SCORE_FILE ]; then if [ "$PKG_DELETE_EXTRA" != Yes -a -f $SCORE_FILE ]; then
echo echo
echo "+---------------" echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform" echo "| To completely deinstall the $1 package you need to perform"

View File

@ -1,3 +1,5 @@
@comment $OpenBSD: PLIST,v 1.4 2001/08/11 03:17:12 brad Exp $ @comment $OpenBSD: PLIST,v 1.5 2003/09/28 00:35:10 naddy Exp $
bin/connect4 bin/connect4
man/man6/connect4.6 man/man6/connect4.6
@cwd /var/games
@extra connect4.scores

View File

@ -1,11 +1,11 @@
#!/bin/sh #!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1.1.1 2003/08/08 22:01:36 jolan Exp $ # $OpenBSD: DEINSTALL,v 1.2 2003/09/28 00:35:10 naddy Exp $
set -e set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local} PREFIX=${PKG_PREFIX:-/usr/local}
SCORE_FILE=/var/games/pathological_scores SCORE_FILE=/var/games/pathological_scores
if [ -f $SCORE_FILE ]; then if [ "$PKG_DELETE_EXTRA" != Yes -a -f $SCORE_FILE ]; then
echo echo
echo "+---------------" echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform" echo "| To completely deinstall the $1 package you need to perform"

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2003/08/08 22:01:36 jolan Exp $ @comment $OpenBSD: PLIST,v 1.2 2003/09/28 00:35:10 naddy Exp $
bin/pathological bin/pathological
bin/write-highscores bin/write-highscores
man/man6/pathological.6 man/man6/pathological.6
@ -169,3 +169,5 @@ share/pixmaps/pathological.xpm
@dirrm share/pathological @dirrm share/pathological
@dirrm share/doc/pathological/html @dirrm share/doc/pathological/html
@dirrm share/doc/pathological @dirrm share/doc/pathological
@cwd /var/games
@extra pathological_scores

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2003/04/15 12:41:25 wilfried Exp $ # $OpenBSD: DEINSTALL,v 1.2 2003/09/28 00:35:11 naddy Exp $
# #
# xbill de-installation # xbill de-installation
@ -8,7 +8,7 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local} PREFIX=${PKG_PREFIX:-/usr/local}
SCORE_FILE=/var/games/xbill.scores SCORE_FILE=/var/games/xbill.scores
if [ -f $SCORE_FILE ]; then if [ "$PKG_DELETE_EXTRA" != Yes -a -f $SCORE_FILE ]; then
echo echo
echo "+---------------" echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform" echo "| To completely deinstall the $1 package you need to perform"

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.4 2003/04/15 12:41:25 wilfried Exp $ @comment $OpenBSD: PLIST,v 1.5 2003/09/28 00:35:11 naddy Exp $
@group games @group games
@mode 2555 @mode 2555
bin/xbill bin/xbill
@ -70,3 +70,5 @@ share/xbill/pixmaps/wingdows.xpm
@dirrm share/xbill/pixmaps @dirrm share/xbill/pixmaps
@dirrm share/xbill/bitmaps @dirrm share/xbill/bitmaps
@dirrm share/xbill @dirrm share/xbill
@cwd /var/games
@extra xbill.scores

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2003/04/15 12:41:51 wilfried Exp $ # $OpenBSD: DEINSTALL,v 1.2 2003/09/28 00:35:11 naddy Exp $
# #
# xjewel de-installation # xjewel de-installation
@ -8,7 +8,7 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local} PREFIX=${PKG_PREFIX:-/usr/local}
SCORE_FILE=/var/games/xjewel.scores SCORE_FILE=/var/games/xjewel.scores
if [ -f $SCORE_FILE ]; then if [ "$PKG_DELETE_EXTRA" != Yes -a -f $SCORE_FILE ]; then
echo echo
echo "+---------------" echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform" echo "| To completely deinstall the $1 package you need to perform"

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.4 2003/04/15 12:41:51 wilfried Exp $ @comment $OpenBSD: PLIST,v 1.5 2003/09/28 00:35:11 naddy Exp $
bin/xjewel bin/xjewel
@group games @group games
@mode 2555 @mode 2555
@ -9,3 +9,5 @@ lib/xjewel.font/fonts.dir
lib/xjewel.font/seven_seg.pcf.gz lib/xjewel.font/seven_seg.pcf.gz
man/cat6/xjewel.0 man/cat6/xjewel.0
@dirrm lib/xjewel.font @dirrm lib/xjewel.font
@cwd /var/games
@extra xjewel.scores

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2002/09/19 07:00:42 pvalchev Exp $ # $OpenBSD: DEINSTALL,v 1.2 2003/09/28 00:35:11 naddy Exp $
# #
# xpat2 de-installation script # xpat2 de-installation script
@ -34,7 +34,7 @@ fi
# #
case $2 in case $2 in
DEINSTALL) DEINSTALL)
if [ -f $SCORE_FILE ]; then if [ "$PKG_DELETE_EXTRA" != Yes -a -f $SCORE_FILE ]; then
do_notice "$1" do_notice "$1"
fi fi
;; ;;

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.5 2003/03/06 00:24:56 pvalchev Exp $ @comment $OpenBSD: PLIST,v 1.6 2003/09/28 00:35:11 naddy Exp $
@group games @group games
@mode 2755 @mode 2755
bin/xpat2 bin/xpat2
@ -95,3 +95,5 @@ man/man6/xpat2.6
@dirrm lib/X11/xpat/french @dirrm lib/X11/xpat/french
@dirrm lib/X11/xpat/default @dirrm lib/X11/xpat/default
@dirrm lib/X11/xpat @dirrm lib/X11/xpat
@cwd /var/games
@extra xpat.log

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2003/04/15 12:42:31 wilfried Exp $ # $OpenBSD: DEINSTALL,v 1.2 2003/09/28 00:35:11 naddy Exp $
# #
# xscrabble de-installation # xscrabble de-installation
@ -8,7 +8,7 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local} PREFIX=${PKG_PREFIX:-/usr/local}
SCORE_FILE=/var/games/xscrabble.scores SCORE_FILE=/var/games/xscrabble.scores
if [ -f $SCORE_FILE ]; then if [ "$PKG_DELETE_EXTRA" != Yes -a -f $SCORE_FILE ]; then
echo echo
echo "+---------------" echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform" echo "| To completely deinstall the $1 package you need to perform"

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.3 2003/04/15 12:42:31 wilfried Exp $ @comment $OpenBSD: PLIST,v 1.4 2003/09/28 00:35:11 naddy Exp $
@group games @group games
@mode 2555 @mode 2555
bin/xscrab bin/xscrab
@ -9,3 +9,5 @@ lib/X11/app-defaults/XScrabble
lib/X11/xscrabble/OSPD3.gz lib/X11/xscrabble/OSPD3.gz
lib/X11/xscrabble/scrabble_permutations lib/X11/xscrabble/scrabble_permutations
@dirrm lib/X11/xscrabble @dirrm lib/X11/xscrabble
@cwd /var/games
@extra xscrabble.scores

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $OpenBSD: DEINSTALL,v 1.2 2002/09/18 19:27:49 pvalchev Exp $ # $OpenBSD: DEINSTALL,v 1.3 2003/09/28 00:35:11 naddy Exp $
# #
# xsoldier de-installation script # xsoldier de-installation script
@ -34,7 +34,7 @@ fi
# #
case $2 in case $2 in
DEINSTALL) DEINSTALL)
if [ -f $SCORE_FILE ]; then if [ "$PKG_DELETE_EXTRA" != Yes -a -f $SCORE_FILE ]; then
do_notice "$1" do_notice "$1"
fi fi
;; ;;

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.4 2002/09/16 08:18:11 pvalchev Exp $ @comment $OpenBSD: PLIST,v 1.5 2003/09/28 00:35:11 naddy Exp $
bin/xsoldier bin/xsoldier
lib/X11/xsoldier/Boss1.xpm lib/X11/xsoldier/Boss1.xpm
lib/X11/xsoldier/Boss2.xpm lib/X11/xsoldier/Boss2.xpm
@ -30,3 +30,5 @@ lib/X11/xsoldier/Star1.xpm
lib/X11/xsoldier/Star2.xpm lib/X11/xsoldier/Star2.xpm
lib/X11/xsoldier/Title.xpm lib/X11/xsoldier/Title.xpm
@dirrm lib/X11/xsoldier @dirrm lib/X11/xsoldier
@cwd /var/games
@extra xsoldier.scores