Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/osslsigncode/
Date: Sun, 26 May 2019 12:08:16
Message-Id: 1558872474.fafdf3d31f5b94b84010f64f58ca4cd8a0b6dc29.asturm@gentoo
1 commit: fafdf3d31f5b94b84010f64f58ca4cd8a0b6dc29
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 26 12:06:50 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 26 12:07:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fafdf3d3
7
8 app-crypt/osslsigncode: pkgconfig -> BDEPEND, restrict to OpenSSL-1.0
9
10 Bug: https://bugs.gentoo.org/674426
11 Package-Manager: Portage-2.3.66, Repoman-2.3.13
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 app-crypt/osslsigncode/osslsigncode-1.7.1.ebuild | 11 ++++++-----
15 1 file changed, 6 insertions(+), 5 deletions(-)
16
17 diff --git a/app-crypt/osslsigncode/osslsigncode-1.7.1.ebuild b/app-crypt/osslsigncode/osslsigncode-1.7.1.ebuild
18 index 4ea247315fc..6962aa2c45f 100644
19 --- a/app-crypt/osslsigncode/osslsigncode-1.7.1.ebuild
20 +++ b/app-crypt/osslsigncode/osslsigncode-1.7.1.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 +# Copyright 1999-2019 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI="7"
27 @@ -12,12 +12,13 @@ SLOT="0"
28 KEYWORDS="~amd64 ~x86"
29 IUSE="curl libressl"
30
31 +BDEPEND="virtual/pkgconfig"
32 RDEPEND="
33 - !libressl? ( dev-libs/openssl:0= )
34 + curl? ( net-misc/curl )
35 + !libressl? ( =dev-libs/openssl-1.0*:0= )
36 libressl? ( dev-libs/libressl:0= )
37 - curl? ( net-misc/curl )"
38 -DEPEND="${RDEPEND}
39 - virtual/pkgconfig"
40 +"
41 +DEPEND="${RDEPEND}"
42
43 src_configure() {
44 econf $(use_with curl)