From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-932403-garchives=archives.gentoo.org@lists.gentoo.org> 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 0F1FF139694 for <garchives@archives.gentoo.org>; Sat, 18 Feb 2017 09:23:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A1FAE0CBD; Sat, 18 Feb 2017 09:23:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BA2BE0CBD for <gentoo-commits@lists.gentoo.org>; Sat, 18 Feb 2017 09:23:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37F8A33BE32 for <gentoo-commits@lists.gentoo.org>; Sat, 18 Feb 2017 09:23:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1B094BF1 for <gentoo-commits@lists.gentoo.org>; Sat, 18 Feb 2017 09:23:33 +0000 (UTC) From: "Patrice Clement" <monsieurp@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" <monsieurp@gentoo.org> Message-ID: <1487409804.2bc489a402a15d403c835b6e9619fa68cdf1d1e2.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/spiped/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/spiped/spiped-1.5.0-r3.ebuild X-VCS-Directories: net-misc/spiped/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 2bc489a402a15d403c835b6e9619fa68cdf1d1e2 X-VCS-Branch: master Date: Sat, 18 Feb 2017 09:23:33 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 35a4ac18-106f-4fa4-ba7c-d2aa37c53f6b X-Archives-Hash: 3eb12f8250719ea7241a09873dc9ad46 commit: 2bc489a402a15d403c835b6e9619fa68cdf1d1e2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org> AuthorDate: Sat Feb 18 09:11:26 2017 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Sat Feb 18 09:23:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bc489a4 net-misc/spiped: add libressl support. Package-Manager: portage-2.3.3 net-misc/spiped/spiped-1.5.0-r3.ebuild | 46 ++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/net-misc/spiped/spiped-1.5.0-r3.ebuild b/net-misc/spiped/spiped-1.5.0-r3.ebuild new file mode 100644 index 0000000000..194fc4c081 --- /dev/null +++ b/net-misc/spiped/spiped-1.5.0-r3.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="secure pipe daemon" +HOMEPAGE="http://www.tarsnap.com/spiped.html" +SRC_URI="http://www.tarsnap.com/${PN}/${P}.tgz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="libressl" + +MY_PN="${PN/d/}" + +DEPEND=" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= )" + +# Blocker added due to #548126 +RDEPEND=" + ${DEPEND} + !net-mail/qlogtools" + +src_install() { + dobin "${MY_PN}/${MY_PN}" + dosbin "${PN}/${PN}" + + doman "${MY_PN}/${MY_PN}.1" "${PN}/${PN}.1" + + newinitd "${FILESDIR}/${PN}.initd" "${PN}" + newconfd "${FILESDIR}/${PN}.confd" "${PN}" + + dodir "etc/${PN}" +} + +pkg_postinst() { + elog + elog "You will need to configure spiped via its" + elog "configuration file located in /etc/conf.d/." + elog + elog "Please have a look at this file prior to starting up spiped!" + elog +}