diff options
author | Torsten Veller <tove@gentoo.org> | 2008-03-22 14:51:06 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2008-03-22 14:51:06 +0000 |
commit | e014d55981659bc7ed0d5ced49de48ffdf1a87f1 (patch) | |
tree | b3938a574d187b96891ab58e1d831010b61adad9 /mail-mta/msmtp/msmtp-1.4.14.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-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.14.ebuild')
-rw-r--r-- | mail-mta/msmtp/msmtp-1.4.14.ebuild | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/mail-mta/msmtp/msmtp-1.4.14.ebuild b/mail-mta/msmtp/msmtp-1.4.14.ebuild new file mode 100644 index 000000000000..1d7191a318e6 --- /dev/null +++ b/mail-mta/msmtp/msmtp-1.4.14.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.14.ebuild,v 1.1 2008/03/22 14:51:06 tove 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-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc gnutls idn mailwrapper nls sasl ssl" + +DEPEND="idn? ( net-dns/libidn ) + nls? ( virtual/libintl ) + gnutls? ( >=net-libs/gnutls-1.2.0 ) + !gnutls? ( ssl? ( >=dev-libs/openssl-0.9.6 ) ) + sasl? ( >=virtual/gsasl-0.2.4 )" + +RDEPEND="${DEPEND} + !mailwrapper? ( !virtual/mta ) + mailwrapper? ( >=net-mail/mailwrapper-0.2 )" + +DEPEND="${DEPEND} + nls? ( sys-devel/gettext ) + dev-util/pkgconfig" + +PROVIDE="virtual/mta" + +src_compile () { + local myconf + + if use gnutls ; then + myconf="--with-ssl=gnutls" + elif use ssl ; then + myconf="--with-ssl=openssl" + else + myconf="--with-ssl=no" + fi + + econf \ + $(use_with idn libidn) \ + $(use_with sasl libgsasl) \ + $(use_enable nls) \ + ${myconf} \ + || die "configure failed" + + emake || die "make failed" +} + +src_install () { + emake DESTDIR="${D}" install || die "install failed" + + if use mailwrapper ; then + insinto /etc/mail + doins "${FILESDIR}"/mailer.conf + else + dodir /usr/sbin + 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 + + local msmtpqueuedir=/usr/share/${PN}/msmtpqueue + insinto ${msmtpqueuedir} + exeinto ${msmtpqueuedir} + doins scripts/msmtpqueue/{ChangeLog,README} || die "dodoc scripts/msmtpqueue failed" + doexe scripts/msmtpqueue/*.sh || die "doexe failed" +} |