another few @extra'z;
This commit is contained in:
parent
dfd282ae10
commit
93a12dd17f
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $OpenBSD: DEINSTALL,v 1.2 2001/05/12 16:41:09 naddy Exp $
|
# $OpenBSD: DEINSTALL,v 1.3 2004/04/14 08:07:14 xsa Exp $
|
||||||
#
|
#
|
||||||
# de-installation of amanda
|
# de-installation of amanda
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ fi
|
|||||||
# Don't actually do anything, but let the user know what can be
|
# Don't actually do anything, but let the user know what can be
|
||||||
# done to fully de-install the package
|
# done to fully de-install the package
|
||||||
#
|
#
|
||||||
if [ -d $CONF_DIR ]; then
|
if [ ${PKG_DELETE_EXTRA} != Yes -a -d $CONF_DIR ]; then
|
||||||
echo ""
|
echo ""
|
||||||
echo "** The directory $CONF_DIR and any files within the directory"
|
echo "** The directory $CONF_DIR and any files within the directory"
|
||||||
echo "** have not been removed. You MAY want to remove these files to"
|
echo "** have not been removed. You MAY want to remove these files to"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@comment $OpenBSD: PLIST,v 1.11 2001/10/11 19:25:21 espie Exp $
|
@comment $OpenBSD: PLIST,v 1.12 2004/04/14 08:07:15 xsa Exp $
|
||||||
@pkgcfl amanda-client-*
|
@pkgcfl amanda-client-*
|
||||||
libexec/amanda/amandad
|
libexec/amanda/amandad
|
||||||
libexec/amanda/amcat.awk
|
libexec/amanda/amcat.awk
|
||||||
@ -111,3 +111,4 @@ share/examples/amanda/disklist
|
|||||||
@dirrm share/examples/amanda
|
@dirrm share/examples/amanda
|
||||||
@dirrm share/doc/amanda
|
@dirrm share/doc/amanda
|
||||||
@dirrm libexec/amanda
|
@dirrm libexec/amanda
|
||||||
|
@extraunexec rm -rf ${SYSCONFDIR}/amanda
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $OpenBSD: DEINSTALL,v 1.1.1.1 2001/08/13 11:23:03 naddy Exp $
|
# $OpenBSD: DEINSTALL,v 1.2 2004/04/14 08:07:15 xsa Exp $
|
||||||
#
|
#
|
||||||
# cdrchive de-installation
|
# cdrchive de-installation
|
||||||
|
|
||||||
@ -8,7 +8,7 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|||||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||||
CONFIG_FILE=${SYSCONFDIR}/cdr.conf
|
CONFIG_FILE=${SYSCONFDIR}/cdr.conf
|
||||||
|
|
||||||
if [ -f $CONFIG_FILE ]; then
|
if [ ${PKG_DELETE_EXTRA} != Yes -a -f $CONFIG_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"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2001/08/13 11:23:03 naddy Exp $
|
@comment $OpenBSD: PLIST,v 1.2 2004/04/14 08:07:15 xsa Exp $
|
||||||
bin/cdrchive
|
bin/cdrchive
|
||||||
share/doc/cdrchive/README
|
share/doc/cdrchive/README
|
||||||
share/doc/cdrchive/acknowlg.html
|
share/doc/cdrchive/acknowlg.html
|
||||||
@ -32,3 +32,5 @@ share/doc/cdrchive/writewav.html
|
|||||||
share/examples/cdrchive/cdr.conf.sample
|
share/examples/cdrchive/cdr.conf.sample
|
||||||
@dirrm share/examples/cdrchive
|
@dirrm share/examples/cdrchive
|
||||||
@dirrm share/doc/cdrchive
|
@dirrm share/doc/cdrchive
|
||||||
|
@cwd ${SYSCONFDIR}
|
||||||
|
@extra cdr.conf
|
||||||
|
@ -1,16 +1,17 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $OpenBSD: DEINSTALL,v 1.3 2003/02/04 22:59:48 naddy Exp $
|
# $OpenBSD: DEINSTALL,v 1.4 2004/04/14 08:07:15 xsa 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}
|
||||||
|
CONFIG_FILE=${SYSCONFDIR}/xcdroast.conf
|
||||||
|
|
||||||
if [ -f ${SYSCONFDIR}/xcdroast.conf ]; then
|
if [ ${PKG_DELETE_EXTRA} != Yes -a -f ${CONFIG_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"
|
||||||
echo "| this step as root:"
|
echo "| this step as root:"
|
||||||
echo "|"
|
echo "|"
|
||||||
echo "| rm -f ${SYSCONFDIR}/xcdroast.conf"
|
echo "| rm -f ${CONFIG_FILE}"
|
||||||
echo "|"
|
echo "|"
|
||||||
echo "| Do not do this if you plan on re-installing $1"
|
echo "| Do not do this if you plan on re-installing $1"
|
||||||
echo "| at some future time."
|
echo "| at some future time."
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@comment $OpenBSD: PLIST,v 1.6 2004/01/12 05:37:11 jolan Exp $
|
@comment $OpenBSD: PLIST,v 1.7 2004/04/14 08:07:15 xsa Exp $
|
||||||
bin/xcdroast
|
bin/xcdroast
|
||||||
lib/xcdroast-0.98/bin/cddbtool
|
lib/xcdroast-0.98/bin/cddbtool
|
||||||
lib/xcdroast-0.98/bin/rmtool
|
lib/xcdroast-0.98/bin/rmtool
|
||||||
@ -61,3 +61,5 @@ share/pixmaps/xcdricon.xpm
|
|||||||
@dirrm lib/xcdroast-0.98/icons
|
@dirrm lib/xcdroast-0.98/icons
|
||||||
@dirrm lib/xcdroast-0.98/bin
|
@dirrm lib/xcdroast-0.98/bin
|
||||||
@dirrm lib/xcdroast-0.98
|
@dirrm lib/xcdroast-0.98
|
||||||
|
@cwd ${SYSCONFDIR}
|
||||||
|
@extra xcdroast.conf
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $OpenBSD: DEINSTALL,v 1.1 2002/09/04 04:35:19 pvalchev Exp $
|
# $OpenBSD: DEINSTALL,v 1.2 2004/04/14 08:07:15 xsa Exp $
|
||||||
#
|
#
|
||||||
# De-installation setup of gentoo
|
# De-installation setup of gentoo
|
||||||
|
|
||||||
@ -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
|
||||||
;;
|
;;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@comment $OpenBSD: PLIST,v 1.3 2002/09/04 04:35:19 pvalchev Exp $
|
@comment $OpenBSD: PLIST,v 1.4 2004/04/14 08:07:15 xsa Exp $
|
||||||
bin/gentoo
|
bin/gentoo
|
||||||
man/man1/gentoo.1
|
man/man1/gentoo.1
|
||||||
share/doc/gentoo/FAQ
|
share/doc/gentoo/FAQ
|
||||||
@ -215,3 +215,5 @@ share/locale/sv/LC_MESSAGES/gentoo.mo
|
|||||||
@dirrm share/doc/gentoo/images
|
@dirrm share/doc/gentoo/images
|
||||||
@dirrm share/doc/gentoo/config
|
@dirrm share/doc/gentoo/config
|
||||||
@dirrm share/doc/gentoo
|
@dirrm share/doc/gentoo
|
||||||
|
@cwd ${SYSCONFDIR}
|
||||||
|
@extra gentoorc
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
#
|
||||||
# $OpenBSD: DEINSTALL,v 1.2 2002/03/08 11:50:56 naddy Exp $
|
# $OpenBSD: DEINSTALL,v 1.3 2004/04/14 08:07:15 xsa Exp $
|
||||||
# pwm de-installation
|
# pwm de-installation
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
@ -8,7 +8,7 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|||||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||||
CONFIG_DIR=${SYSCONFDIR}/pwm
|
CONFIG_DIR=${SYSCONFDIR}/pwm
|
||||||
|
|
||||||
if [ -d $CONFIG_DIR ]; then
|
if [ ${PKG_DELETE_EXTRA} != Yes -a -d $CONFIG_DIR ]; 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"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@comment $OpenBSD: PLIST,v 1.3 2003/06/05 23:01:51 naddy Exp $
|
@comment $OpenBSD: PLIST,v 1.4 2004/04/14 08:07:15 xsa Exp $
|
||||||
bin/pwm
|
bin/pwm
|
||||||
man/man1/pwm.1
|
man/man1/pwm.1
|
||||||
share/doc/pwm/LICENSE
|
share/doc/pwm/LICENSE
|
||||||
@ -11,3 +11,4 @@ share/examples/pwm/menus-default.conf
|
|||||||
share/examples/pwm/pwm.conf
|
share/examples/pwm/pwm.conf
|
||||||
@dirrm share/examples/pwm
|
@dirrm share/examples/pwm
|
||||||
@dirrm share/doc/pwm
|
@dirrm share/doc/pwm
|
||||||
|
@extraunexec rm -rf ${SYSCONFDIR}/pwm
|
||||||
|
Loading…
Reference in New Issue
Block a user