From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D769D1384A7 for ; Wed, 30 Sep 2015 11:59:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69A3CE087D; Wed, 30 Sep 2015 11:59:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E63DEE087E for ; Wed, 30 Sep 2015 11:59:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3164340FB4 for ; Wed, 30 Sep 2015 11:59:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CC06249 for ; Wed, 30 Sep 2015 11:59:19 +0000 (UTC) From: "Julian Ospald" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julian Ospald" Message-ID: <1443614343.2b33fec4774e03ad3fec53c10a734b9d2e36d4e3.hasufell@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/esmtp/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-mta/esmtp/esmtp-1.2-r1.ebuild X-VCS-Directories: mail-mta/esmtp/ X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald X-VCS-Revision: 2b33fec4774e03ad3fec53c10a734b9d2e36d4e3 X-VCS-Branch: master Date: Wed, 30 Sep 2015 11:59:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 442cc513-5d09-40ae-bebb-6a410c79bae6 X-Archives-Hash: db9f80c53d2c703ea8e23a1ad3803f1a commit: 2b33fec4774e03ad3fec53c10a734b9d2e36d4e3 Author: Julian Ospald gentoo org> AuthorDate: Wed Sep 30 11:32:52 2015 +0000 Commit: Julian Ospald gentoo org> CommitDate: Wed Sep 30 11:59:03 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b33fec4 mail-mta/esmtp: add libressl support mail-mta/esmtp/esmtp-1.2-r1.ebuild | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/mail-mta/esmtp/esmtp-1.2-r1.ebuild b/mail-mta/esmtp/esmtp-1.2-r1.ebuild new file mode 100644 index 0000000..6744a56 --- /dev/null +++ b/mail-mta/esmtp/esmtp-1.2-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +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="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="libressl" + +CDEPEND=" + net-libs/libesmtp + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:= ) +" +RDEPEND="${CDEPEND} + !mail-mta/courier + !mail-mta/exim + !mail-mta/mini-qmail + !mail-mta/msmtp + !mail-mta/netqmail + !mail-mta/nullmailer + !mail-mta/postfix + !mail-mta/qmail-ldap + !mail-mta/sendmail + !mail-mta/ssmtp + !mail-mta/opensmtpd +" +DEPEND="${CDEPEND} + sys-devel/flex +" + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README TODO sample.esmtprc +} + +pkg_postinst() { + elog "A sample esmtprc file has been installed in /usr/share/doc/${P}" +}