diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-09-03 20:13:26 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-09-03 20:13:26 +0000 |
commit | 6fa044bbcebfd110882b0838ce11ec904ce71257 (patch) | |
tree | a92ad0506aae185078add7a49b1dc120300a7123 /net-mail/exim | |
parent | updated version (diff) | |
download | gentoo-2-6fa044bbcebfd110882b0838ce11ec904ce71257.tar.gz gentoo-2-6fa044bbcebfd110882b0838ce11ec904ce71257.tar.bz2 gentoo-2-6fa044bbcebfd110882b0838ce11ec904ce71257.zip |
/etc/exim/configure.default is now installed as /etc/exim/exim.conf.dist
Diffstat (limited to 'net-mail/exim')
-rw-r--r-- | net-mail/exim/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/exim/exim-4.05.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/net-mail/exim/ChangeLog b/net-mail/exim/ChangeLog index 9a6d5546ca79..086bd2a018bd 100644 --- a/net-mail/exim/ChangeLog +++ b/net-mail/exim/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for net-mail/exim # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/ChangeLog,v 1.10 2002/09/01 22:24:44 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/ChangeLog,v 1.11 2002/09/03 20:13:25 raker Exp $ *exim-4.05 (29 Aug 2002) + 03 Sep 2002; Nick Hadaway <raker@gentoo.org> exim-4.05.ebuild : + Still masked. /etc/exim/configure.default is now installed as + /etc/exim/exim.conf.dist to match most other packages config file + name style. + 01 Sep 2002; Nick Hadaway <raker@gentoo.org> exim-4.05.ebuild : Changed use variables to coincide with already defined system variables. diff --git a/net-mail/exim/exim-4.05.ebuild b/net-mail/exim/exim-4.05.ebuild index 67bfbf420b04..c5b09b138516 100644 --- a/net-mail/exim/exim-4.05.ebuild +++ b/net-mail/exim/exim-4.05.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Updated to exim-4 by Ben Lutgens <lamer@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/exim-4.05.ebuild,v 1.3 2002/09/01 22:24:45 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/exim-4.05.ebuild,v 1.4 2002/09/03 20:13:26 raker Exp $ S=${WORKDIR}/${P} @@ -40,7 +40,7 @@ src_unpack() { -e "s:BIN_DIRECTORY=/usr/exim/bin:BIN_DIRECTORY=/usr/sbin:" \ -e "s:COMPRESS_COMMAND=/opt/gnu/bin/gzip:COMPRESS_COMMAND=/usr/bin/gzip:" \ -e "s:ZCAT_COMMAND=/opt/gnu/bin/zcat:ZCAT_COMMAND=/usr/bin/zcat:" \ - -e "s:CONFIGURE_FILE=/usr/exim/configure:CONFIGURE_FILE=/etc/exim/configure:" \ + -e "s:CONFIGURE_FILE=/usr/exim/configure:CONFIGURE_FILE=/etc/exim/exim.conf:" \ -e "s:EXIM_MONITOR=eximon.bin:# EXIM_MONITOR=eximon.bin:" \ -e "s:# EXIM_PERL=perl.o:EXIM_PERL=perl.o:" \ -e "s:# INFO_DIRECTORY=/usr/local/info:INFO_DIRECTORY=/usr/share/info:" \ @@ -158,9 +158,7 @@ src_install () { dodir /etc/exim cd ${S}/src - insopts -o root -g root -m 0644 - insinto /etc/exim - doins configure.default + cp configure.default ${D}/etc/exim/exim.conf.dist dodoc ${S}/doc/* doman ${S}/doc/exim.8 @@ -190,6 +188,6 @@ pkg_postinst() { einfo "Read the bottom of /etc/exim/system_filter.exim for usage." einfo "/usr/share/doc/${P}/auth_conf.sub.gz contains the configuration sub for using smtp auth." - einfo "Please create /etc/exim/configure from /etc/exim/configure.default." + einfo "Please create /etc/exim/exim.conf from /etc/exim/exim.conf.dist." } |