diff options
author | Fernando J. Pereda <ferdy@gentoo.org> | 2005-09-10 22:54:03 +0000 |
---|---|---|
committer | Fernando J. Pereda <ferdy@gentoo.org> | 2005-09-10 22:54:03 +0000 |
commit | 27a0e2eb0d360612192dd2d93bedd8883a153c51 (patch) | |
tree | aed28dfb19160c0cc64fffabe61846cf21dfe120 /net-mail | |
parent | Applied security patch wrt bug #105458. Stable on x86 (diff) | |
download | gentoo-2-27a0e2eb0d360612192dd2d93bedd8883a153c51.tar.gz gentoo-2-27a0e2eb0d360612192dd2d93bedd8883a153c51.tar.bz2 gentoo-2-27a0e2eb0d360612192dd2d93bedd8883a153c51.zip |
remove vulnerable version. forgot to do it earlier
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/mailutils/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/mailutils/files/digest-mailutils-0.6-r1 | 1 | ||||
-rw-r--r-- | net-mail/mailutils/mailutils-0.6-r1.ebuild | 94 |
3 files changed, 5 insertions, 96 deletions
diff --git a/net-mail/mailutils/ChangeLog b/net-mail/mailutils/ChangeLog index 556e9c27c01e..983711ed0ccc 100644 --- a/net-mail/mailutils/ChangeLog +++ b/net-mail/mailutils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/mailutils # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.20 2005/09/10 22:52:10 ferdy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.21 2005/09/10 22:54:03 ferdy Exp $ + + 10 Sep 2005; Fernando J. Pereda <ferdy@gentoo.org> + -mailutils-0.6-r1.ebuild: + remove vulnerable version. forgot to do it earlier *mailutils-0.6-r2 (10 Sep 2005) diff --git a/net-mail/mailutils/files/digest-mailutils-0.6-r1 b/net-mail/mailutils/files/digest-mailutils-0.6-r1 deleted file mode 100644 index f0e8fdbea34f..000000000000 --- a/net-mail/mailutils/files/digest-mailutils-0.6-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 13e38442893a24f16798e4b5f634ba7d mailutils-0.6.tar.bz2 2025327 diff --git a/net-mail/mailutils/mailutils-0.6-r1.ebuild b/net-mail/mailutils/mailutils-0.6-r1.ebuild deleted file mode 100644 index 063b1c338c1a..000000000000 --- a/net-mail/mailutils/mailutils-0.6-r1.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-0.6-r1.ebuild,v 1.2 2005/05/27 13:07:08 ferdy Exp $ - -inherit eutils -DESCRIPTION="A useful collection of mail servers, clients, and filters." -HOMEPAGE="http://www.gnu.org/software/mailutils/mailutils.html" -SRC_URI="http://ftp.gnu.org/gnu/mailutils/${P}.tar.bz2" -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~ppc ~sparc x86" -IUSE="mailwrapper nls pam mysql postgres gdbm" -PROVIDE="virtual/mailx" -DEPEND="!virtual/mailx - !mail-client/nmh - !mail-client/elm - dev-util/guile - gdbm? ( sys-libs/gdbm ) - mysql? ( dev-db/mysql ) - postgres? ( dev-db/postgresql ) - nls? ( sys-devel/gettext ) - virtual/mta" - -pkg_setup() { - # Default to MySQL if USE="mysql postgres', bug #58162. - if use mysql && use postgres; then - echo - ewarn "You have both 'mysql' and 'postgres' in your USE flags." - ewarn "Portage will build this package with MySQL support." - echo - ewarn "If this is not what you want; please hit Control-C now;" - ewarn "change you USE flags then emerge this package again." - echo - ewarn "Waiting 30 seconds before continuing..." - ewarn "(Control-C to abort)..." - epause 30 - fi -} -src_unpack() { - unpack ${A} - cd ${S} - - epatch ${FILESDIR}/${P}-mh-Makefile.in.patch - epatch ${FILESDIR}/${PN}-IDEF0954-IDEF0955.patch - epatch ${FILESDIR}/${PN}-IDEF0956.patch - epatch ${FILESDIR}/${PN}-IDEF0957.patch - epatch ${FILESDIR}/${PN}-getline.diff - epatch ${FILESDIR}/${PN}-SQLinjection.patch -} - -src_compile() { - - local myconf="--localstatedir=/var --sharedstatedir=/var --enable-mh-utils" - - # bug in autoconf logic treats both --with and --without as set, - # so we cannot do use_with - # use mysql && myconf="${myconf} --with-mysql" - # use postgres && myconf="${myconf} --with-postgres" - if use mysql && use postgres; then - einfo "build with MySQL support." - myconf="${myconf} --with-mysql" - elif use mysql; then - einfo "build with MySQL support." - myconf="${myconf} --with-mysql" - elif use postgres; then - einfo "build with PotsgreSQL support." - myconf="${myconf} --with-postgres" - fi - - # do not disable-sendmail for postfix user w/o mailwrapper, bug #44249. - mymta=$(best_version virtual/mta) - mymta=${mymta%-[0-9]*} - mymta=${mymta##*\/} - if ! use mailwrapper && [ "$mymta" == "postfix" ]; then - myconf="${myconf} --enable-sendmail" - einfo "My MTA is: $mymta" - einfo "enable-sendmail" - else - myconf="${myconf} --disable-sendmail" - einfo "My MTA is: $mymta" - einfo "disable-sendmail" - fi - - myconf="${myconf} $(use_enable nls) $(use_enable pam) $(use_enable gdbm)" - econf ${myconf} || die "configure failed" - emake || die "compile failed" -} - -src_install() { - make DESTDIR=${D} install || die - # mail.rc stolen from mailx, resolve bug #37302. - insinto /etc - doins "${FILESDIR}/mail.rc" -} |