diff options
author | Tom Martin <slarti@gentoo.org> | 2005-05-27 16:00:40 +0000 |
---|---|---|
committer | Tom Martin <slarti@gentoo.org> | 2005-05-27 16:00:40 +0000 |
commit | 8ee5b62e480c41a0ac9acb148088e1817a8058d2 (patch) | |
tree | f0787dc7ffc46a31442c0ec988c2dd5493de9095 /mail-mta/msmtp/msmtp-1.4.1-r1.ebuild | |
parent | Added icon download and closing bug #94186. (diff) | |
download | gentoo-2-8ee5b62e480c41a0ac9acb148088e1817a8058d2.tar.gz gentoo-2-8ee5b62e480c41a0ac9acb148088e1817a8058d2.tar.bz2 gentoo-2-8ee5b62e480c41a0ac9acb148088e1817a8058d2.zip |
Version bump, but also with a package.masked -r1 for the mailer.eclass stuff.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'mail-mta/msmtp/msmtp-1.4.1-r1.ebuild')
-rw-r--r-- | mail-mta/msmtp/msmtp-1.4.1-r1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/mail-mta/msmtp/msmtp-1.4.1-r1.ebuild b/mail-mta/msmtp/msmtp-1.4.1-r1.ebuild new file mode 100644 index 000000000000..2785b95d492c --- /dev/null +++ b/mail-mta/msmtp/msmtp-1.4.1-r1.ebuild @@ -0,0 +1,58 @@ +# 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.1-r1.ebuild,v 1.1 2005/05/27 16:00:40 slarti Exp $ + +inherit mailer + +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" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64 ~sparc ~ppc64 ~alpha" +IUSE="ssl gnutls sasl doc" +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 )" + +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 + mailer_install_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 +} |