From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 338C4138359 for ; Tue, 15 Sep 2020 00:34:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54C2BE08CA; Tue, 15 Sep 2020 00:34:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EF392E08CA for ; Tue, 15 Sep 2020 00:34:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 71CCF340C53 for ; Tue, 15 Sep 2020 00:34:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC25735A for ; Tue, 15 Sep 2020 00:34:30 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1600130062.8c314cafb4bd106b0ceecf1294e71f5e9bcf6d6e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/serialmail/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/serialmail/serialmail-0.75-r5.ebuild X-VCS-Directories: net-mail/serialmail/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8c314cafb4bd106b0ceecf1294e71f5e9bcf6d6e X-VCS-Branch: master Date: Tue, 15 Sep 2020 00:34:30 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3b2a130a-ba60-47ac-a5cc-eb8710c0cd53 X-Archives-Hash: 75d44ca90435eb88545b768b5b0941f2 commit: 8c314cafb4bd106b0ceecf1294e71f5e9bcf6d6e Author: Sam James gentoo org> AuthorDate: Tue Sep 15 00:34:22 2020 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 15 00:34:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c314caf net-mail/serialmail: bump to EAPI 7 Bug: https://bugs.gentoo.org/742239 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> net-mail/serialmail/serialmail-0.75-r5.ebuild | 52 +++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/net-mail/serialmail/serialmail-0.75-r5.ebuild b/net-mail/serialmail/serialmail-0.75-r5.ebuild new file mode 100644 index 00000000000..dff981e6190 --- /dev/null +++ b/net-mail/serialmail/serialmail-0.75-r5.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A serialmail is a collection of tools for passing mail across serial links" +HOMEPAGE="http://cr.yp.to/serialmail.html" +SRC_URI="http://cr.yp.to/software/${P}.tar.gz + mirror://gentoo/${P}-patch.tar.bz2" + +LICENSE="all-rights-reserved" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="static" +RESTRICT="mirror bindist" + +BDEPEND="sys-apps/groff" +DEPEND=">=sys-apps/ucspi-tcp-0.88" +RDEPEND=" + ${DEPEND} + virtual/daemontools +" + +PATCHES=( + "${WORKDIR}"/${P}-gentoo.patch + "${WORKDIR}"/${P}-smtpauth.patch + "${WORKDIR}"/${P}-smtpauth_comp.patch + "${FILESDIR}"/${P}-implicit.patch +) + +src_prepare() { + default + + sed -i "s|@CFLAGS@|${CFLAGS}|" conf-cc || die + use static && LDFLAGS="${LDFLAGS} -static" + sed -i "s|@LDFLAGS@|${LDFLAGS}|" conf-ld || die +} + +src_compile() { + sed -i -e '/(man|doc)/d' hier.c || die + emake it man +} + +src_install() { + dobin serialsmtp serialqmtp maildirsmtp maildirserial maildirqmtp + + dodoc AUTOTURN CHANGES FROMISP SYSDEPS THANKS TOISP \ + BLURB FILES INSTALL README TARGETS TODO VERSION + + doman maildirqmtp.1 maildirserial.1 maildirsmtp.1 \ + serialqmtp.1 serialsmtp.1 +}