diff options
author | Tom Martin <slarti@gentoo.org> | 2005-05-08 08:56:08 +0000 |
---|---|---|
committer | Tom Martin <slarti@gentoo.org> | 2005-05-08 08:56:08 +0000 |
commit | 6bc095511ca5f8fece0ff6e3cb83d91ebb64fe97 (patch) | |
tree | 406ae2f35b3d493cbd85c66e4df6cb2a81d1c610 /mail-mta | |
parent | Stable on ia64. (diff) | |
download | gentoo-2-6bc095511ca5f8fece0ff6e3cb83d91ebb64fe97.tar.gz gentoo-2-6bc095511ca5f8fece0ff6e3cb83d91ebb64fe97.tar.bz2 gentoo-2-6bc095511ca5f8fece0ff6e3cb83d91ebb64fe97.zip |
Purge another version.
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/msmtp/ChangeLog | 5 | ||||
-rw-r--r-- | mail-mta/msmtp/files/digest-msmtp-1.3.2-r1 | 1 | ||||
-rw-r--r-- | mail-mta/msmtp/msmtp-1.3.2-r1.ebuild | 59 |
3 files changed, 4 insertions, 61 deletions
diff --git a/mail-mta/msmtp/ChangeLog b/mail-mta/msmtp/ChangeLog index cfb87255229c..08c220e24d1f 100644 --- a/mail-mta/msmtp/ChangeLog +++ b/mail-mta/msmtp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for mail-mta/msmtp # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.45 2005/05/02 19:40:57 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.46 2005/05/08 08:56:08 slarti Exp $ + + 08 May 2005; Tom Martin <slarti@gentoo.org> -msmtp-1.3.2-r1.ebuild: + One more version purge. 02 May 2005; Michael Hanselmann <hansmi@gentoo.org> msmtp-1.4.0.ebuild: Stable on ppc. diff --git a/mail-mta/msmtp/files/digest-msmtp-1.3.2-r1 b/mail-mta/msmtp/files/digest-msmtp-1.3.2-r1 deleted file mode 100644 index 90dea5e6b974..000000000000 --- a/mail-mta/msmtp/files/digest-msmtp-1.3.2-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 8461c307baad0928c190269c74fc3133 msmtp-1.3.2.tar.bz2 162756 diff --git a/mail-mta/msmtp/msmtp-1.3.2-r1.ebuild b/mail-mta/msmtp/msmtp-1.3.2-r1.ebuild deleted file mode 100644 index 53a227af64de..000000000000 --- a/mail-mta/msmtp/msmtp-1.3.2-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.3.2-r1.ebuild,v 1.4 2005/02/23 02:41:33 superlag Exp $ - -DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt" -HOMEPAGE="http://msmtp.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" -IUSE="ssl gnutls sasl mailwrapper" -DEPEND="virtual/libc - dev-util/pkgconfig - ssl? ( - gnutls? ( >=net-libs/gnutls-1.0.0 ) - !gnutls? ( >=dev-libs/openssl-0.9.6 ) - ) - sasl? ( >=virtual/gsasl-0.2.3 ) - mailwrapper? ( >=net-mail/mailwrapper-0.2 ) - !mailwrapper? ( !virtual/mta )" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc amd64" -PROVIDE="virtual/mta" - -src_compile () { - local myconf - - if use ssl && use gnutls ; then - myconf="${myconf} --enable-ssl --with-ssl=gnutls" - elif use ssl && ! use gnutls ; then - myconf="${myconf} --enable-ssl --with-ssl=openssl" - else - myconf="${myconf} --disable-ssl" - fi - - econf \ - $(use_enable sasl) \ - ${myconf} \ - || die "configure failed" - - emake || die "make failed" -} - -src_install () { - make DESTDIR=${D} install || die "install failed" - - if use mailwrapper; then - insinto /etc/mail - doins ${FILESDIR}/mailer.conf - else - dodir /usr/sbin /usr/lib - dosym /usr/bin/msmtp /usr/sbin/sendmail || die "dosym failed" - dosym /usr/sbin/sendmail /usr/lib/sendmail || die "dosym failed" - fi - - - dodoc AUTHORS ChangeLog NEWS README THANKS \ - doc/msmtprc.example doc/Mutt+msmtp.txt \ - doc/msmtprc.example README.gsasl \ - || die "dodoc failed" -} |