diff options
-rw-r--r-- | mail-mta/esmtp/ChangeLog | 7 | ||||
-rw-r--r-- | mail-mta/esmtp/esmtp-1.2.ebuild | 25 |
2 files changed, 31 insertions, 1 deletions
diff --git a/mail-mta/esmtp/ChangeLog b/mail-mta/esmtp/ChangeLog index 59638d161a10..734c28520fc3 100644 --- a/mail-mta/esmtp/ChangeLog +++ b/mail-mta/esmtp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-mta/esmtp # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/esmtp/ChangeLog,v 1.22 2010/01/01 18:24:05 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/esmtp/ChangeLog,v 1.23 2010/06/09 18:56:16 patrick Exp $ + +*esmtp-1.2 (09 Jun 2010) + + 09 Jun 2010; Patrick Lauer <patrick@gentoo.org> +esmtp-1.2.ebuild: + Bump for #321639 01 Jan 2010; Christian Faulhammer <fauli@gentoo.org> esmtp-1.0.ebuild: Transfer Prefix keywords diff --git a/mail-mta/esmtp/esmtp-1.2.ebuild b/mail-mta/esmtp/esmtp-1.2.ebuild new file mode 100644 index 000000000000..c5840990f9f0 --- /dev/null +++ b/mail-mta/esmtp/esmtp-1.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/esmtp/esmtp-1.2.ebuild,v 1.1 2010/06/09 18:56:16 patrick Exp $ + +DESCRIPTION="esmtp is a user configurable relay-only Mail Transfer Agent (MTA) with a sendmail compatible syntax" +HOMEPAGE="http://esmtp.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="" + +DEPEND="net-libs/libesmtp + dev-libs/openssl" +RDEPEND="${DEPEND} + !net-mail/mailwrapper + !virtual/mta" + +PROVIDE="virtual/mta" + +src_install() { + emake DESTDIR="${D}" install || die "einstall failed" + dodoc AUTHORS ChangeLog NEWS README TODO || die +} |