diff options
author | Tuan Van <langthang@gentoo.org> | 2004-07-20 15:36:55 +0000 |
---|---|---|
committer | Tuan Van <langthang@gentoo.org> | 2004-07-20 15:36:55 +0000 |
commit | 8998c3763b30562b1d349adf62b50120fae41b4a (patch) | |
tree | 0c41f8009653cd87cb150996ec83f125e620c2db /net-mail/mailutils | |
parent | missing dependency media-libs/imlib (#57625) (Manifest recommit) (diff) | |
download | gentoo-2-8998c3763b30562b1d349adf62b50120fae41b4a.tar.gz gentoo-2-8998c3763b30562b1d349adf62b50120fae41b4a.tar.bz2 gentoo-2-8998c3763b30562b1d349adf62b50120fae41b4a.zip |
mailutils-0.3 doesn`t compile with gcc-3.3, bug #53807. Remove.
Diffstat (limited to 'net-mail/mailutils')
-rw-r--r-- | net-mail/mailutils/mailutils-0.3.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/net-mail/mailutils/mailutils-0.3.ebuild b/net-mail/mailutils/mailutils-0.3.ebuild deleted file mode 100644 index 90e1cd5f798f..000000000000 --- a/net-mail/mailutils/mailutils-0.3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-0.3.ebuild,v 1.7 2004/07/15 01:50:31 agriffis Exp $ - -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="x86 ~ppc" -IUSE="nls pam mysql gdbm" -DEPEND="!mail-client/mailx - !mail-client/nmh - dev-util/guile - gdbm? ( sys-libs/gdbm ) - mysql? ( dev-db/mysql ) - nls? ( sys-devel/gettext )" - -src_compile() { - - use nls || myconf="${myconf} --disable-nls" - - use pam || myconf="${myconf} --disable-pam" - - use mysql && myconf="${myconf} --enable-mysql" - - use gdbm && myconf="${myconf} --with-gdbm" - - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --infodir=/usr/share/info \ - --sharedstatedir=/var \ - --mandir=/usr/share/man \ - --disable-sendmail \ - ${myconf} || die "./configure failed" - emake || die -} - -src_install() { - make DESTDIR=${D} install || die -} |