summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2008-03-22 14:51:06 +0000
committerTorsten Veller <tove@gentoo.org>2008-03-22 14:51:06 +0000
commite014d55981659bc7ed0d5ced49de48ffdf1a87f1 (patch)
treeb3938a574d187b96891ab58e1d831010b61adad9 /mail-mta/msmtp/msmtp-1.4.0.ebuild
parentVersion bump. (diff)
downloadgentoo-2-e014d55981659bc7ed0d5ced49de48ffdf1a87f1.tar.gz
gentoo-2-e014d55981659bc7ed0d5ced49de48ffdf1a87f1.tar.bz2
gentoo-2-e014d55981659bc7ed0d5ced49de48ffdf1a87f1.zip
Version bump (#187065) and cleaning.
(Portage version: 2.1.4.4)
Diffstat (limited to 'mail-mta/msmtp/msmtp-1.4.0.ebuild')
-rw-r--r--mail-mta/msmtp/msmtp-1.4.0.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/mail-mta/msmtp/msmtp-1.4.0.ebuild b/mail-mta/msmtp/msmtp-1.4.0.ebuild
deleted file mode 100644
index 1a7393094546..000000000000
--- a/mail-mta/msmtp/msmtp-1.4.0.ebuild
+++ /dev/null
@@ -1,60 +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.4.0.ebuild,v 1.9 2005/05/02 19:40:57 hansmi Exp $
-
-DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt"
-HOMEPAGE="http://msmtp.sourceforge.net/"
-SRC_URI="mirror://sourceforge/msmtp/${P}.tar.bz2"
-LICENSE="GPL-2"
-IUSE="ssl gnutls sasl mailwrapper doc"
-SLOT="0"
-KEYWORDS="x86 ppc amd64 sparc ppc64 ~alpha"
-DEPEND="virtual/libc
- dev-util/pkgconfig
- ssl? (
- gnutls? ( >=net-libs/gnutls-1.2.0 )
- !gnutls? ( >=dev-libs/openssl-0.9.6 )
- )
- sasl? ( >=virtual/gsasl-0.2.4 )"
-RDEPEND="mailwrapper? ( >=net-mail/mailwrapper-0.2 )
- !mailwrapper? ( !virtual/mta )"
-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 gsasl) \
- ${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"
- fi
-
- dodoc AUTHORS ChangeLog NEWS README* THANKS \
- doc/{Mutt+msmtp.txt,msmtprc*} || die "dodoc failed"
-
- if use doc ; then
- dohtml doc/msmtp.html || die "dohtml failed"
- dodoc doc/msmtp.pdf
- fi
-}