Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/spiped/
Date: Thu, 01 Sep 2016 09:40:34
Message-Id: 1472722804.9c57a621d82e8dd310cdd5043f302b25e6d41abc.monsieurp@gentoo
1 commit: 9c57a621d82e8dd310cdd5043f302b25e6d41abc
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 09:03:06 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 09:40:04 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c57a621
7
8 net-misc/spiped: EAPI 6 bump.
9
10 Package-Manager: portage-2.2.28
11
12 net-misc/spiped/spiped-1.5.0-r2.ebuild | 45 ++++++++++++++++++++++++++++++++++
13 1 file changed, 45 insertions(+)
14
15 diff --git a/net-misc/spiped/spiped-1.5.0-r2.ebuild b/net-misc/spiped/spiped-1.5.0-r2.ebuild
16 new file mode 100644
17 index 00000000..3dcc387
18 --- /dev/null
19 +++ b/net-misc/spiped/spiped-1.5.0-r2.ebuild
20 @@ -0,0 +1,45 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="secure pipe daemon"
28 +HOMEPAGE="http://www.tarsnap.com/spiped.html"
29 +SRC_URI="http://www.tarsnap.com/${PN}/${P}.tgz"
30 +
31 +LICENSE="BSD"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~x86"
34 +IUSE=""
35 +
36 +MY_PN="${PN/d/}"
37 +
38 +DEPEND="
39 + dev-libs/openssl:*"
40 +
41 +# Blocker added due to #548126
42 +RDEPEND="
43 + ${DEPEND}
44 + !net-mail/qlogtools"
45 +
46 +src_install() {
47 + dobin "${MY_PN}/${MY_PN}"
48 + dosbin "${PN}/${PN}"
49 +
50 + doman "${MY_PN}/${MY_PN}.1" "${PN}/${PN}.1"
51 +
52 + newinitd "${FILESDIR}/${PN}.initd" "${PN}"
53 + newconfd "${FILESDIR}/${PN}.confd" "${PN}"
54 +
55 + dodir "etc/${PN}"
56 +}
57 +
58 +pkg_postinst() {
59 + elog
60 + elog "You will need to configure spiped via its"
61 + elog "configuration file located in /etc/conf.d/."
62 + elog
63 + elog "Please have a look at this file prior to starting up spiped!"
64 + elog
65 +}