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-crypt/osslsigncode/
Date: Fri, 03 Jun 2016 14:06:00
Message-Id: 1464962868.09fa1e6def10752f5cfb82e3e0707d4a16b29253.blueness@gentoo
1 commit: 09fa1e6def10752f5cfb82e3e0707d4a16b29253
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 3 14:07:28 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 3 14:07:48 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09fa1e6d
7
8 app-crypt/osslsigncode: add libressl support
9
10 Package-Manager: portage-2.2.28
11
12 app-crypt/osslsigncode/osslsigncode-1.4.ebuild | 10 ++++++----
13 1 file changed, 6 insertions(+), 4 deletions(-)
14
15 diff --git a/app-crypt/osslsigncode/osslsigncode-1.4.ebuild b/app-crypt/osslsigncode/osslsigncode-1.4.ebuild
16 index 40c7df0..f96b636 100644
17 --- a/app-crypt/osslsigncode/osslsigncode-1.4.ebuild
18 +++ b/app-crypt/osslsigncode/osslsigncode-1.4.ebuild
19 @@ -1,8 +1,8 @@
20 -# Copyright 1999-2012 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 -EAPI="4"
26 +EAPI="5"
27
28 DESCRIPTION="Platform-independent tool for Authenticode signing of EXE/CAB files"
29 HOMEPAGE="https://sourceforge.net/projects/osslsigncode"
30 @@ -11,9 +11,11 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
31 LICENSE="GPL-2"
32 SLOT="0"
33 KEYWORDS="~amd64 ~x86"
34 -IUSE="curl"
35 +IUSE="curl libressl"
36
37 -RDEPEND="dev-libs/openssl
38 +RDEPEND="
39 + !libressl? ( dev-libs/openssl:0= )
40 + libressl? ( dev-libs/libressl:0= )
41 curl? ( net-misc/curl )"
42 DEPEND="${RDEPEND}
43 virtual/pkgconfig"