Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libosip/
Date: Mon, 28 May 2018 23:02:20
Message-Id: 1527548516.d5e6d689c7bf44b11cb83b5eecf17feb38813b27.bman@gentoo
1 commit: d5e6d689c7bf44b11cb83b5eecf17feb38813b27
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 28 01:56:23 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon May 28 23:01:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5e6d689
7
8 net-libs/libosip: bump EAPI and drop eutils
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 net-libs/libosip/libosip-3.6.0.ebuild | 16 +++++++---------
13 1 file changed, 7 insertions(+), 9 deletions(-)
14
15 diff --git a/net-libs/libosip/libosip-3.6.0.ebuild b/net-libs/libosip/libosip-3.6.0.ebuild
16 index 54f60c8218a..392feca4b0c 100644
17 --- a/net-libs/libosip/libosip-3.6.0.ebuild
18 +++ b/net-libs/libosip/libosip-3.6.0.ebuild
19 @@ -1,13 +1,14 @@
20 -# Copyright 1999-2013 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI="2"
25 +EAPI=6
26
27 -inherit eutils autotools
28 +inherit autotools
29
30 MY_PV=${PV%.?}-${PV##*.}
31 MY_PV=${PV}
32 MY_P=${PN}2-${MY_PV}
33 +
34 DESCRIPTION="a simple way to support the Session Initiation Protocol"
35 HOMEPAGE="https://www.gnu.org/software/osip/"
36 SRC_URI="mirror://gnu/osip/${MY_P}.tar.gz"
37 @@ -19,8 +20,10 @@ IUSE="test"
38
39 S=${WORKDIR}/${MY_P}
40
41 +PATCHES=( "${FILESDIR}/${PN}-3.3.0-out-source-build.patch" )
42 +
43 src_prepare() {
44 - epatch "${FILESDIR}/${PN}-3.3.0-out-source-build.patch"
45 + eapply_user
46 AT_M4DIR="scripts" eautoreconf
47 }
48
49 @@ -28,8 +31,3 @@ src_configure() {
50 econf --enable-mt \
51 $(use_enable test)
52 }
53 -
54 -src_install() {
55 - emake DESTDIR="${D}" install || die "Failed to install"
56 - dodoc AUTHORS ChangeLog FEATURES HISTORY README NEWS TODO || die
57 -}