Yay! @extra todo list is shriking!
This commit is contained in:
parent
86555bee8d
commit
733f51e23a
@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: DEINSTALL,v 1.3 2003/07/09 07:17:15 pvalchev Exp $
|
||||
# $OpenBSD: DEINSTALL,v 1.4 2004/04/14 10:44:13 xsa Exp $
|
||||
#
|
||||
# conserver de-installation
|
||||
|
||||
@ -11,7 +11,7 @@ PASSWD_FILE=${SYSCONFDIR}/conserver.passwd
|
||||
LOG_DIR=/var/consoles
|
||||
SERVICES=/etc/services
|
||||
|
||||
if [ -f $CONFIG_FILE ]; then
|
||||
if [ ${PKG_DELETE_EXTRA} != Yes -a -f $CONFIG_FILE ]; then
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| To completely deinstall the $1 package you need to perform"
|
||||
@ -20,12 +20,15 @@ if [ -f $CONFIG_FILE ]; then
|
||||
echo "| rm -f $CONFIG_FILE"
|
||||
echo "| rm -f $PASSWD_FILE"
|
||||
echo "| rm -rf $LOG_DIR"
|
||||
echo "| and remove the conserver line from $SERVICES."
|
||||
echo "|"
|
||||
echo "| Do not do this if you plan on re-installing $1"
|
||||
echo "| at some future time."
|
||||
echo "+---------------"
|
||||
echo
|
||||
fi
|
||||
echo "+---------------"
|
||||
echo "| The conserver line should also be removed from $SERVICES"
|
||||
echo "| to completely deinstall the $1 package."
|
||||
echo "+---------------"
|
||||
|
||||
exit 0
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.4 2003/05/26 20:20:53 pvalchev Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.5 2004/04/14 10:44:13 xsa Exp $
|
||||
bin/console
|
||||
man/man1/console.1
|
||||
man/man5/conserver.cf.5
|
||||
@ -9,3 +9,7 @@ share/examples/conserver/README.OpenBSD
|
||||
share/examples/conserver/conserver.cf
|
||||
share/examples/conserver/conserver.passwd
|
||||
@dirrm share/examples/conserver
|
||||
@cwd ${SYSCONFDIR}
|
||||
@extra conserver.cf
|
||||
@extra conserver.passwd
|
||||
@extraunexec rm -rf /var/consoles
|
||||
|
@ -1,14 +1,14 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: DEINSTALL,v 1.3 2000/08/31 00:40:30 brad Exp $
|
||||
# $OpenBSD: DEINSTALL,v 1.4 2004/04/14 10:44:13 xsa Exp $
|
||||
#
|
||||
# minicom de-installation
|
||||
|
||||
set -e
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
CONFIG_DIR=/etc/minicom
|
||||
CONFIG_DIR=${SYSCONFDIR}/minicom
|
||||
|
||||
if [ -d $CONFIG_DIR ]; then
|
||||
if [ ${PKG_DELETE_EXTRA} != Yes -a -d $CONFIG_DIR ]; then
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| To completely deinstall the $1 package you need to perform"
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.13 2003/12/16 16:42:31 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.14 2004/04/14 10:44:13 xsa Exp $
|
||||
bin/ascii-xfr
|
||||
@mode 555
|
||||
bin/minicom
|
||||
@ -91,3 +91,4 @@ share/locale/ru/LC_MESSAGES/minicom.mo
|
||||
@dirrm share/examples/minicom/extras
|
||||
@dirrm share/examples/minicom
|
||||
@dirrm share/doc/minicom
|
||||
@extraunexec rm -rf ${SYSCONFDIR}/minicom
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: DEINSTALL,v 1.2 2003/04/26 14:55:32 sturm Exp $
|
||||
# $OpenBSD: DEINSTALL,v 1.3 2004/04/14 10:44:13 xsa Exp $
|
||||
#
|
||||
# a2ps de-installation
|
||||
|
||||
@ -9,7 +9,7 @@ PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
A2PSCFG=${SYSCONFDIR}/a2ps.cfg
|
||||
A2PSSITECFG=${SYSCONFDIR}/a2ps-site.cfg
|
||||
|
||||
if [ -e ${A2PSCFG} ]; then
|
||||
if [ ${PKG_DELETE_EXTRA} != Yes -a -f ${A2PSCFG} ]; then
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| To completely deinstall the $1 package you need to perform"
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.11 2003/12/16 19:36:39 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.12 2004/04/14 10:44:13 xsa Exp $
|
||||
@unexec install-info --delete --info-dir=%D/info %D/info/a2ps.info
|
||||
@unexec install-info --delete --info-dir=%D/info %D/info/ogonkify.info
|
||||
@unexec install-info --delete --info-dir=%D/info %D/info/regex.info
|
||||
@ -298,3 +298,6 @@ share/ogonkify/ptmri-o.ps
|
||||
@exec install-info --info-dir=%D/info %D/info/a2ps.info
|
||||
@exec install-info --info-dir=%D/info %D/info/ogonkify.info
|
||||
@exec install-info --info-dir=%D/info %D/info/regex.info
|
||||
@cwd ${SYSCONFDIR}
|
||||
@extra a2ps.cfg
|
||||
@extra a2ps-site.cfg
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: DEINSTALL,v 1.1.1.1 2003/05/29 11:09:46 sturm Exp $
|
||||
# $OpenBSD: DEINSTALL,v 1.2 2004/04/14 10:44:13 xsa Exp $
|
||||
#
|
||||
# apsfilter de-installation
|
||||
|
||||
@ -8,7 +8,7 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
ETCDIR=${SYSCONFDIR}/apsfilter
|
||||
|
||||
if [ -d $ETCDIR ]; then
|
||||
if [ ${PKG_DELETE_EXTRA} != Yes -a -d $ETCDIR ]; then
|
||||
echo ""
|
||||
echo "+---------------"
|
||||
echo "| To completely deinstall the $1 package you need to perform"
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2003/05/29 11:09:46 sturm Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2004/04/14 10:44:13 xsa Exp $
|
||||
bin/aps2file
|
||||
bin/apsfilter-bug
|
||||
bin/apspreview
|
||||
@ -338,3 +338,4 @@ share/doc/apsfilter/paper
|
||||
@dirrm share/apsfilter/driver
|
||||
@dirrm share/apsfilter/bin
|
||||
@dirrm share/apsfilter
|
||||
@extraunexec rm -rf ${SYSCONFDIR}/apsfilter
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: DEINSTALL,v 1.3 2003/04/26 14:55:32 sturm Exp $
|
||||
# $OpenBSD: DEINSTALL,v 1.4 2004/04/14 10:44:13 xsa Exp $
|
||||
#
|
||||
# cyrproxy de-installation
|
||||
|
||||
@ -9,7 +9,7 @@ PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
CONFIG_FILE=${SYSCONFDIR}/cyrproxy.conf
|
||||
CGIDIR=/var/www/cgi-bin
|
||||
|
||||
if [ -f ${CONFIG_FILE} ]; then
|
||||
if [ ${PKG_DELETE_EXTRA} != Yes -a -f ${CONFIG_FILE} ]; then
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| To completely deinstall the $1 package you need to perform"
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.2 2000/06/15 05:31:53 form Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.3 2004/04/14 10:44:13 xsa Exp $
|
||||
bin/cyrtrans
|
||||
bin/discover
|
||||
libexec/cyrproxy
|
||||
@ -24,3 +24,5 @@ share/doc/cyrproxy/README
|
||||
share/doc/cyrproxy/README.http
|
||||
@dirrm share/doc/cyrproxy
|
||||
@dirrm share/cyrproxy
|
||||
@cwd ${SYSCONFDIR}
|
||||
@extra cyrproxy.conf
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: DEINSTALL,v 1.3 2001/08/13 04:10:02 form Exp $
|
||||
# $OpenBSD: DEINSTALL,v 1.4 2004/04/14 10:44:13 xsa Exp $
|
||||
#
|
||||
# xruskb de-installation
|
||||
|
||||
@ -8,7 +8,7 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/X11R6}
|
||||
AD_FILE=/etc/X11/app-defaults/Xrus
|
||||
|
||||
if [ -f ${AD_FILE} ]; then
|
||||
if [ ${PKG_DELETE_EXTRA} != Yes -a -f ${AD_FILE} ]; then
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| To completely deinstall the $1 package you need to perform"
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.8 2003/08/14 18:40:11 grange Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.9 2004/04/14 10:44:13 xsa Exp $
|
||||
bin/xrus
|
||||
bin/xrusmodmap
|
||||
man/man1/xrus.1
|
||||
@ -48,3 +48,5 @@ share/xruskb/yawerty-iso5.xmm
|
||||
share/xruskb/yawerty-koi8.xmm
|
||||
@dirrm share/xruskb
|
||||
@dirrm share/doc/xruskb
|
||||
@cwd /etc/X11/app-defaults
|
||||
@extra Xrus
|
||||
|
Loading…
Reference in New Issue
Block a user