kill INSTALL/DEINSTALL by making use of @sample.

More directories may be needed for static architectures.
This commit is contained in:
espie 2004-08-05 03:02:01 +00:00
parent cfd54da7d2
commit de54baa49a
3 changed files with 17 additions and 98 deletions

View File

@ -1,24 +0,0 @@
#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.4 2004/04/08 00:05:48 brad Exp $
#
# esound de-installation
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_FILE=${SYSCONFDIR}/esd.conf
if [ "$PKG_DELETE_EXTRA" != Yes -a -f $CONFIG_FILE ]; then
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| this step as root:"
echo "|"
echo "| rm -f $CONFIG_FILE"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
echo "+---------------"
echo
fi
exit 0

View File

@ -1,58 +0,0 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.5 2004/06/26 04:38:33 brad Exp $
#
# Pre/post-installation setup of esound
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_FILE=${SYSCONFDIR}/esd.conf
SAMPLE_CONFIG_FILE=$PREFIX/share/examples/esound/esd.conf
do_notice()
{
echo
echo "+---------------"
echo "| The existing $1 configuration file, $CONFIG_FILE,"
echo "| has NOT been changed. You may want to compare it to the"
echo "| current sample file, $SAMPLE_CONFIG_FILE,"
echo "| and update your configuration as needed."
echo "+---------------"
echo
}
do_install()
{
install -o root -g wheel -m 644 $SAMPLE_CONFIG_FILE $CONFIG_FILE
echo
echo "+---------------"
echo "| The $1 configuration file, $CONFIG_FILE,"
echo "| has been installed. Please view this file and change"
echo "| the configuration to meet your needs."
echo "+---------------"
echo
}
if [ $# -ne 2 ]; then
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
fi
case $2 in
PRE-INSTALL)
: nothing to pre-install for this port
;;
POST-INSTALL)
if [ -f $CONFIG_FILE ]; then
do_notice $1
else
do_install $1
fi
;;
*)
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
;;
esac
exit 0

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.14 2004/06/26 04:38:33 brad Exp $
@comment $OpenBSD: PLIST,v 1.15 2004/08/05 03:02:01 espie Exp $
bin/esd
bin/esd-config
bin/esdcat
@ -12,21 +12,22 @@ bin/esdsample
include/esd.h
lib/libesd.a
lib/libesd.la
%%SHARED%%
lib/pkgconfig/
lib/pkgconfig/esound.pc
man/man1/esd-config.1
man/man1/esd.1
man/man1/esdcat.1
man/man1/esdctl.1
man/man1/esddsp.1
man/man1/esdfilt.1
man/man1/esdloop.1
man/man1/esdmon.1
man/man1/esdplay.1
man/man1/esdrec.1
man/man1/esdsample.1
@man man/man1/esd-config.1
@man man/man1/esd.1
@man man/man1/esdcat.1
@man man/man1/esdctl.1
@man man/man1/esddsp.1
@man man/man1/esdfilt.1
@man man/man1/esdloop.1
@man man/man1/esdmon.1
@man man/man1/esdplay.1
@man man/man1/esdrec.1
@man man/man1/esdsample.1
share/aclocal/
share/aclocal/esd.m4
share/examples/esound/
share/examples/esound/esd.conf
@dirrm share/examples/esound
@cwd ${SYSCONFDIR}
@extra esd.conf
@sample ${SYSCONFDIR}/esd.conf
%%SHARED%%