diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2004-03-17 21:43:42 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2004-03-17 21:43:42 +0000 |
commit | 613d4e9a740f7d8ab71a9af27c60180b3078eb90 (patch) | |
tree | 274c4c0b86c6fe4d03bb20258a1d73451e1aa8e8 /net-mail/mailwrapper | |
parent | Version bump. (Manifest recommit) (diff) | |
download | gentoo-2-613d4e9a740f7d8ab71a9af27c60180b3078eb90.tar.gz gentoo-2-613d4e9a740f7d8ab71a9af27c60180b3078eb90.tar.bz2 gentoo-2-613d4e9a740f7d8ab71a9af27c60180b3078eb90.zip |
Removed pkg_setup() function.
Diffstat (limited to 'net-mail/mailwrapper')
-rw-r--r-- | net-mail/mailwrapper/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/mailwrapper/mailwrapper-0.1.ebuild | 11 |
2 files changed, 7 insertions, 11 deletions
diff --git a/net-mail/mailwrapper/ChangeLog b/net-mail/mailwrapper/ChangeLog index 1899f1bd8ae2..b1510cfaf1e3 100644 --- a/net-mail/mailwrapper/ChangeLog +++ b/net-mail/mailwrapper/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/mailwrapper # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailwrapper/ChangeLog,v 1.1 2004/03/09 03:25:47 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailwrapper/ChangeLog,v 1.2 2004/03/17 21:43:42 g2boojum Exp $ + + 17 Mar 2004; Grant Goodyear <g2boojum@hotmail.com> mailwrapper-0.1.ebuild: + Updated the ebuild to remove the protection that had kept users + from overwriting /usr/sbin/sendmail. Now that we're gearing up to + have all mtas install mailwrapper this protection is unwanted. *mailwrapper-0.1 (08 Mar 2004) diff --git a/net-mail/mailwrapper/mailwrapper-0.1.ebuild b/net-mail/mailwrapper/mailwrapper-0.1.ebuild index 469213147f4a..deb109d0dacc 100644 --- a/net-mail/mailwrapper/mailwrapper-0.1.ebuild +++ b/net-mail/mailwrapper/mailwrapper-0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailwrapper/mailwrapper-0.1.ebuild,v 1.1 2004/03/09 03:25:47 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailwrapper/mailwrapper-0.1.ebuild,v 1.2 2004/03/17 21:43:42 g2boojum Exp $ DESCRIPTION="Program to invoke an appropriate MTA based on a config file" HOMEPAGE="http://www.gentoo.org/" @@ -12,15 +12,6 @@ IUSE="" DEPEND="" S=${WORKDIR}/${P} -pkg_setup() { - if [ -f "/usr/sbin/sendmail" ] - then - einfo "This ebuild will install a new /usr/sbin/sendmail." - einfo "Please move the current one out of the way first." - die - fi -} - src_compile() { gcc ${CFLAGS} -o mailwrapper mailwrapper.c fparseln.c fgetln.c \ || die "gcc failed" |