Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/
Date: Sat, 26 Dec 2015 01:11:33
Message-Id: 1451092703.633c4217dc36a5b8ed3381b286b9adef4f804227.blueness@gentoo
1 commit: 633c4217dc36a5b8ed3381b286b9adef4f804227
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 26 01:18:23 2015 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 26 01:18:23 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=633c4217
7
8 app-admin/radmind: add libressl support
9
10 Package-Manager: portage-2.2.24
11
12 app-admin/radmind/radmind-1.14.1-r1.ebuild | 33 ++++++++++++++++++++++++++++++
13 1 file changed, 33 insertions(+)
14
15 diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild b/app-admin/radmind/radmind-1.14.1-r1.ebuild
16 new file mode 100644
17 index 0000000..ed0b79b
18 --- /dev/null
19 +++ b/app-admin/radmind/radmind-1.14.1-r1.ebuild
20 @@ -0,0 +1,33 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +inherit eutils
28 +
29 +DESCRIPTION="command-line tools and server to remotely administer multiple Unix filesystems"
30 +HOMEPAGE="http://rsug.itd.umich.edu/software/radmind/"
31 +SRC_URI="mirror://sourceforge/radmind/${P}.tar.gz"
32 +
33 +LICENSE="HPND"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="libressl"
37 +
38 +DEPEND="
39 + !libressl? ( dev-libs/openssl:0 )
40 + libressl? ( dev-libs/libressl )"
41 +RDEPEND="${DEPEND}"
42 +
43 +src_prepare() {
44 + epatch "${FILESDIR}"/${PN}-1.7.0-gentoo.patch
45 + # remove dnssd as it doesn't compile
46 + epatch "${FILESDIR}"/${PN}-1.7.1-dnssd.patch
47 + epatch "${FILESDIR}"/${PN}-1.14.0-parallel-make.patch
48 +}
49 +
50 +src_install() {
51 + default
52 + dodoc README VERSION COPYRIGHT
53 +}