From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AA398138330 for ; Mon, 28 May 2018 23:02:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC1D4E07EE; Mon, 28 May 2018 23:02:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8A1BCE07ED for ; Mon, 28 May 2018 23:02:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 80348335C72 for ; Mon, 28 May 2018 23:02:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BED8D29E for ; Mon, 28 May 2018 23:02:15 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527548516.d5e6d689c7bf44b11cb83b5eecf17feb38813b27.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libosip/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libosip/libosip-3.6.0.ebuild X-VCS-Directories: net-libs/libosip/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: d5e6d689c7bf44b11cb83b5eecf17feb38813b27 X-VCS-Branch: master Date: Mon, 28 May 2018 23:02:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d6653456-e3cb-44db-a773-0dbc6b3a337f X-Archives-Hash: 5b730eab3827489f0dfd938a1daede5d commit: d5e6d689c7bf44b11cb83b5eecf17feb38813b27 Author: Aaron Bauman gentoo org> AuthorDate: Mon May 28 01:56:23 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Mon May 28 23:01:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5e6d689 net-libs/libosip: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-libs/libosip/libosip-3.6.0.ebuild | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/net-libs/libosip/libosip-3.6.0.ebuild b/net-libs/libosip/libosip-3.6.0.ebuild index 54f60c8218a..392feca4b0c 100644 --- a/net-libs/libosip/libosip-3.6.0.ebuild +++ b/net-libs/libosip/libosip-3.6.0.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=6 -inherit eutils autotools +inherit autotools MY_PV=${PV%.?}-${PV##*.} MY_PV=${PV} MY_P=${PN}2-${MY_PV} + DESCRIPTION="a simple way to support the Session Initiation Protocol" HOMEPAGE="https://www.gnu.org/software/osip/" SRC_URI="mirror://gnu/osip/${MY_P}.tar.gz" @@ -19,8 +20,10 @@ IUSE="test" S=${WORKDIR}/${MY_P} +PATCHES=( "${FILESDIR}/${PN}-3.3.0-out-source-build.patch" ) + src_prepare() { - epatch "${FILESDIR}/${PN}-3.3.0-out-source-build.patch" + eapply_user AT_M4DIR="scripts" eautoreconf } @@ -28,8 +31,3 @@ src_configure() { econf --enable-mt \ $(use_enable test) } - -src_install() { - emake DESTDIR="${D}" install || die "Failed to install" - dodoc AUTHORS ChangeLog FEATURES HISTORY README NEWS TODO || die -}