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: dev-lua/lua-openssl/
Date: Sun, 26 Jun 2016 12:21:59
Message-Id: 1466943880.ec22552ed26125714de8c5c682feb3226865c4ea.blueness@gentoo
1 commit: ec22552ed26125714de8c5c682feb3226865c4ea
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 26 12:13:08 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 26 12:24:40 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec22552e
7
8 dev-lua/lua-openssl: add libressl support
9
10 Package-Manager: portage-2.2.28
11
12 dev-lua/lua-openssl/lua-openssl-0.4.1-r1.ebuild | 8 +++++---
13 1 file changed, 5 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-lua/lua-openssl/lua-openssl-0.4.1-r1.ebuild b/dev-lua/lua-openssl/lua-openssl-0.4.1-r1.ebuild
16 index 1189729..b653a97 100644
17 --- a/dev-lua/lua-openssl/lua-openssl-0.4.1-r1.ebuild
18 +++ b/dev-lua/lua-openssl/lua-openssl-0.4.1-r1.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 @@ -13,12 +13,14 @@ SRC_URI="https://github.com/zhaozg/lua-openssl/archive/${PV}.tar.gz -> ${P}.tar.
26 LICENSE="MIT openssl PHP-3"
27 SLOT="0"
28 KEYWORDS="~amd64 ~x86"
29 -IUSE="luajit"
30 +IUSE="libressl luajit"
31
32 RDEPEND="
33 luajit? ( dev-lang/luajit:2 )
34 !luajit? ( >=dev-lang/lua-5.1:0 )
35 - dev-libs/openssl:0[-bindist]"
36 + !libressl? ( dev-libs/openssl:0=[-bindist] )
37 + libressl? ( dev-libs/libressl:0= )
38 + "
39 DEPEND="${RDEPEND}
40 virtual/pkgconfig"