summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEray Aslan <eras@gentoo.org>2011-11-21 11:38:57 +0000
committerEray Aslan <eras@gentoo.org>2011-11-21 11:38:57 +0000
commit85c3be6109388385770ee060dcbee2d95fcdd560 (patch)
treed97d80341b6bf72064bd2ee7ee7f8922dbedbecd /net-mail/mailutils
parentNew snapshot. (diff)
downloadgentoo-2-85c3be6109388385770ee060dcbee2d95fcdd560.tar.gz
gentoo-2-85c3be6109388385770ee060dcbee2d95fcdd560.tar.bz2
gentoo-2-85c3be6109388385770ee060dcbee2d95fcdd560.zip
drop old
(Portage version: 2.1.10.36/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/mailutils')
-rw-r--r--net-mail/mailutils/ChangeLog5
-rw-r--r--net-mail/mailutils/mailutils-0.6-r3.ebuild90
2 files changed, 4 insertions, 91 deletions
diff --git a/net-mail/mailutils/ChangeLog b/net-mail/mailutils/ChangeLog
index 3c686c483e79..72546252a148 100644
--- a/net-mail/mailutils/ChangeLog
+++ b/net-mail/mailutils/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/mailutils
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.51 2011/09/25 17:10:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.52 2011/11/21 11:38:56 eras Exp $
+
+ 21 Nov 2011; Eray Aslan <eras@gentoo.org> -mailutils-0.6-r3.ebuild:
+ drop old
25 Sep 2011; Raúl Porcel <armin76@gentoo.org> mailutils-0.6-r3.ebuild,
mailutils-2.2.ebuild:
diff --git a/net-mail/mailutils/mailutils-0.6-r3.ebuild b/net-mail/mailutils/mailutils-0.6-r3.ebuild
deleted file mode 100644
index 93e8b8e17de8..000000000000
--- a/net-mail/mailutils/mailutils-0.6-r3.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-0.6-r3.ebuild,v 1.15 2011/09/25 17:10:39 armin76 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="~amd64 ~ppc x86"
-IUSE="nls pam mysql postgres gdbm test"
-
-RDEPEND="!mail-client/nmh
- !mail-filter/libsieve
- !mail-client/mailx
- !mail-client/nail
- dev-scheme/guile
- gdbm? ( sys-libs/gdbm )
- mysql? ( virtual/mysql )
- postgres? ( dev-db/postgresql-server )
- nls? ( sys-devel/gettext )
- virtual/mta"
-
-DEPEND="${RDEPEND}
- test? ( dev-util/dejagnu )"
-
-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
- epatch "${FILESDIR}"/${P}-imap4d-format-string.patch
- epatch "${FILESDIR}"/${P}-imap4d-gcc4.0-ftbfs.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
-
- myconf="${myconf} --enable-sendmail"
-
- 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"
-}