diff options
author | jlam <jlam@pkgsrc.org> | 2002-01-30 23:05:45 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-01-30 23:05:45 +0000 |
commit | 6fce2389370d1ab263035bd8b611137cffac8ecf (patch) | |
tree | cfdd2a7b48456d8e3c6ab7254722c0ac149cdea5 /mail/mutt-devel/INSTALL | |
parent | 6880d3e7200454cd9c0052b4a0707906f356b088 (diff) | |
download | pkgsrc-6fce2389370d1ab263035bd8b611137cffac8ecf.tar.gz |
* Use the general INSTALL/DEINSTALL scripts
* Honor ${PKG_SYSCONFDIR} for the location of the config files
(Muttrc, mime.types).
* Rearrange lines slightly to minimize differences between mutt/Makefile
and mutt-devel/Makefile to simplify updating mutt when the next release
(1.4?) is released.
Diffstat (limited to 'mail/mutt-devel/INSTALL')
-rw-r--r-- | mail/mutt-devel/INSTALL | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/mail/mutt-devel/INSTALL b/mail/mutt-devel/INSTALL deleted file mode 100644 index f042d86359c..00000000000 --- a/mail/mutt-devel/INSTALL +++ /dev/null @@ -1,57 +0,0 @@ -#! /bin/sh -# -# $NetBSD: INSTALL,v 1.1 2001/11/01 01:00:39 zuntum Exp $ - -PKGNAME=$1 -STAGE=$2 - -CAT="@CAT@" -CHMOD="@CHMOD@" -CP="@CP@" - -SAMPLECONFDIR=${PKG_PREFIX}/share/doc/mutt/samples -CONFDIR=${PKG_PREFIX}/etc -CONFFILES="Muttrc" -NONCONFFILES="mime.types" - -case ${STAGE} in -PRE-INSTALL) - ;; - -POST-INSTALL) - echo "Installing configuration files:" - for file in ${CONFFILES} ${NONCONFFILES} - do - FILE=${CONFDIR}/${file} - SAMPLEFILE=${SAMPLECONFDIR}/${file} - if [ -f ${FILE} ] - then - echo " ${FILE} already exists" - else - echo " ${FILE}" - ${CP} ${SAMPLEFILE} ${FILE} - ${CHMOD} 644 ${FILE} - fi - done - ${CAT} << EOF - -=========================================================================== -Some files you might need to customize include the following: - -EOF - for file in ${CONFFILES} - do - FILE=${CONFDIR}/${file} - echo " ${FILE}" - done - ${CAT} << EOF -=========================================================================== -EOF - ;; - -*) - echo "Unexpected argument: ${STAGE}" - exit 1 - ;; -esac -exit 0 |