# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ 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-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="doc gnutls idn nls sasl ssl" RDEPEND="idn? ( net-dns/libidn ) nls? ( virtual/libintl ) ssl? ( gnutls? ( >=net-libs/gnutls-1.2.0 ) !gnutls? ( >=dev-libs/openssl-0.9.6 ) ) sasl? ( >=virtual/gsasl-0.2.4 )" DEPEND="${RDEPEND} nls? ( sys-devel/gettext ) dev-util/pkgconfig" src_compile () { local myconf if use ssl && use gnutls ; then myconf="${myconf} --with-ssl=gnutls" elif use ssl && ! use gnutls ; then myconf="${myconf} --with-ssl=openssl" else myconf="${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 mailer_install_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 docinto scripts dodoc scripts/set_sendmail.sh || die "dodoc scripts failed" docinto scripts/msmtpqueue dodoc scripts/msmtpqueue/* || die "dodoc scripts/msmtpqueue failed" }