diff options
author | 2018-05-27 21:15:09 -0400 | |
---|---|---|
committer | 2018-05-28 19:01:56 -0400 | |
commit | 067a9b19c37cc87db203bfced5cd909f33b14f18 (patch) | |
tree | 07485a4fb12e066148b98d306af171d2f16f266a /net-libs/libeXosip/libeXosip-4.0.0.ebuild | |
parent | net-libs/iax: bump EAPI (diff) | |
download | gentoo-067a9b19c37cc87db203bfced5cd909f33b14f18.tar.gz gentoo-067a9b19c37cc87db203bfced5cd909f33b14f18.tar.bz2 gentoo-067a9b19c37cc87db203bfced5cd909f33b14f18.zip |
net-libs/libeXosip: bump EAPI; drop eutils; add LibreSSL support
Bug: https://bugs.gentoo.org/565238
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'net-libs/libeXosip/libeXosip-4.0.0.ebuild')
-rw-r--r-- | net-libs/libeXosip/libeXosip-4.0.0.ebuild | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/net-libs/libeXosip/libeXosip-4.0.0.ebuild b/net-libs/libeXosip/libeXosip-4.0.0.ebuild index 384ed3cee6ce..c068cc5a6b31 100644 --- a/net-libs/libeXosip/libeXosip-4.0.0.ebuild +++ b/net-libs/libeXosip/libeXosip-4.0.0.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=6 -inherit eutils versionator +inherit versionator MY_PV=${PV%.?}-${PV##*.} MY_PV=${PV} MY_P=${PN}2-${MY_PV} + DESCRIPTION="library to use the SIP protocol for multimedia session establishement" HOMEPAGE="https://savannah.nongnu.org/projects/exosip/" SRC_URI="mirror://nongnu/exosip/${MY_P}.tar.gz" @@ -15,10 +16,14 @@ SRC_URI="mirror://nongnu/exosip/${MY_P}.tar.gz" KEYWORDS="~amd64 ~ppc ~x86 ~ppc-macos ~x86-macos" SLOT="0/$(get_version_component_range 1-2)" LICENSE="GPL-2" -IUSE="+srv ssl" +IUSE="libressl +srv ssl" DEPEND=">=net-libs/libosip-4.0.0:= - ssl? ( dev-libs/openssl )" + ssl? ( + libressl? ( dev-libs/libressl:0= ) + !libressl? ( dev-libs/openssl:0= ) + ) +" RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_P} @@ -29,8 +34,3 @@ src_configure() { $(use_enable ssl openssl) \ $(use_enable srv srvrec) } - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog NEWS README -} |