diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-06-09 18:51:09 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-06-09 18:51:09 +0000 |
commit | b2882c099f89fef85f19624676d2509b0b76e645 (patch) | |
tree | 9437d2098621fbf992b9d2bec7078a7ebf16f6b0 /mail-mta | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-b2882c099f89fef85f19624676d2509b0b76e645.tar.gz gentoo-2-b2882c099f89fef85f19624676d2509b0b76e645.tar.bz2 gentoo-2-b2882c099f89fef85f19624676d2509b0b76e645.zip |
Bump for #301036
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/msmtp/ChangeLog | 7 | ||||
-rw-r--r-- | mail-mta/msmtp/msmtp-1.4.20.ebuild | 112 |
2 files changed, 118 insertions, 1 deletions
diff --git a/mail-mta/msmtp/ChangeLog b/mail-mta/msmtp/ChangeLog index 8b3b05564626..f15682e60f29 100644 --- a/mail-mta/msmtp/ChangeLog +++ b/mail-mta/msmtp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-mta/msmtp # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.82 2010/04/17 18:54:06 a3li Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.83 2010/06/09 18:51:09 patrick Exp $ + +*msmtp-1.4.20 (09 Jun 2010) + + 09 Jun 2010; Patrick Lauer <patrick@gentoo.org> +msmtp-1.4.20.ebuild: + Bump for #301036 17 Apr 2010; Alex Legler <a3li@gentoo.org> -msmtp-1.4.5.ebuild, -msmtp-1.4.7.ebuild: diff --git a/mail-mta/msmtp/msmtp-1.4.20.ebuild b/mail-mta/msmtp/msmtp-1.4.20.ebuild new file mode 100644 index 000000000000..a740902b1d33 --- /dev/null +++ b/mail-mta/msmtp/msmtp-1.4.20.ebuild @@ -0,0 +1,112 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.20.ebuild,v 1.1 2010/06/09 18:51:09 patrick Exp $ + +EAPI=2 + +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 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="doc gnome-keyring gnutls idn mailwrapper nls sasl ssl +mta" + +DEPEND="idn? ( net-dns/libidn ) + nls? ( virtual/libintl ) + gnome-keyring? ( gnome-base/gnome-keyring ) + gnutls? ( >=net-libs/gnutls-1.2.0 ) + !gnutls? ( ssl? ( >=dev-libs/openssl-0.9.6 ) ) + sasl? ( >=virtual/gsasl-0.2.4 )" + +RDEPEND="${DEPEND} + mta? ( + !mailwrapper? ( !virtual/mta ) + mailwrapper? ( >=net-mail/mailwrapper-0.2 ) + )" + +DEPEND="${DEPEND} + nls? ( sys-devel/gettext ) + dev-util/pkgconfig" + +PROVIDE="mta? ( virtual/mta )" + +src_configure () { + 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_with gnome-keyring ) \ + $(use_enable nls) \ + ${myconf} +} + +src_install () { + emake DESTDIR="${D}" install || die "install failed" + + if use mta; then + 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 + 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 + + #d=msmtpqueue + #local msmtpqueue=/usr/share/${PN}/$d + #insinto ${msmtpqueue} + #exeinto ${msmtpqueue} + #doexe scripts/msmtpqueue/*.sh || die "doexe failed" + #for i in ChangeLog README ; do + # newdoc scripts/msmtpqueue/$i msmtpqueue.$i \ + # || die "dodoc scripts/msmtpqueue/$i failed" + #done + + #d=msmtpq + #local msmtpq=/usr/share/${PN}/$d + #insinto ${msmtpqueue} + #exeinto ${msmtpqueue} + #i=README + #newdoc scripts/$d/$i $d.$i \ + # || die "dodoc scripts/$d/$i failed" + + src_install_contrib msmtpqueue "*.sh" "README ChangeLog" + src_install_contrib msmtpq "msmtpq msmtpQ" "README" + +} + +src_install_contrib() { + subdir="$1" + bins="$2" + docs="$3" + local dir=/usr/share/${PN}/$subdir + insinto ${dir} + exeinto ${dir} + for i in $bins ; do + doexe scripts/$subdir/$i || die "doexe $subdir/$i failed" + done + for i in $docs ; do + newdoc scripts/$subdir/$i $subdir.$i \ + || die "dodoc $subdir/$i failed" + done +} |