diff options
author | Amir Ghassemi Nasr <Ameretat.Reith@gmail.com> | 2017-05-19 12:10:14 +0430 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-05-19 12:51:21 +0200 |
commit | d4b990da19a0bc779480169b81fe16fb4c8863ff (patch) | |
tree | 135ea55e326e1140ad12750530c4a8c7eca8fcb5 /app-portage | |
parent | media-sound/pnmixer: Drop old (diff) | |
download | gentoo-d4b990da19a0bc779480169b81fe16fb4c8863ff.tar.gz gentoo-d4b990da19a0bc779480169b81fe16fb4c8863ff.tar.bz2 gentoo-d4b990da19a0bc779480169b81fe16fb4c8863ff.zip |
app-portage/deltup: ability to use libressl
Introducing libressl USE for app-portage/deltup-0.4.6
Closes: https://github.com/gentoo/gentoo/pull/4676
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/deltup/deltup-0.4.6.ebuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/app-portage/deltup/deltup-0.4.6.ebuild b/app-portage/deltup/deltup-0.4.6.ebuild index ad9ce82c8e08..cdc06476fffe 100644 --- a/app-portage/deltup/deltup-0.4.6.ebuild +++ b/app-portage/deltup/deltup-0.4.6.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 inherit eutils toolchain-funcs @@ -15,11 +15,14 @@ S="${WORKDIR}/${MY_PN}-${PV}/src" SLOT="0" LICENSE="GPL-2" KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" -IUSE="" +IUSE="libressl" -DEPEND="dev-libs/openssl:0 +DEPEND=" sys-libs/zlib - app-arch/bzip2" + app-arch/bzip2 + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:= ) +" RDEPEND="${DEPEND} || ( dev-util/bdelta =dev-util/xdelta-1* )" |