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 18EE3138335 for ; Wed, 22 May 2019 15:41:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B19DE089E; Wed, 22 May 2019 15:41:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6B8D7E089E for ; Wed, 22 May 2019 15:41:41 +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 E5437344E34 for ; Wed, 22 May 2019 15:41:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDD8A5F2 for ; Wed, 22 May 2019 15:41:37 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1558539681.556c1107bcd0c2219a6a700d69fc1834b1ef741f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/bio2jack/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/bio2jack/bio2jack-0.9-r2.ebuild X-VCS-Directories: media-libs/bio2jack/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 556c1107bcd0c2219a6a700d69fc1834b1ef741f X-VCS-Branch: master Date: Wed, 22 May 2019 15:41:37 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5bcc42b2-63cc-4246-a6d8-3ac45fa4baac X-Archives-Hash: e901a8d96299af6246edfab7bb2aa51e commit: 556c1107bcd0c2219a6a700d69fc1834b1ef741f Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed May 22 12:48:37 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 22 15:41:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=556c1107 media-libs/bio2jack: EAPI-7 bump, add missing || die Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/bio2jack/bio2jack-0.9-r2.ebuild | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/media-libs/bio2jack/bio2jack-0.9-r2.ebuild b/media-libs/bio2jack/bio2jack-0.9-r2.ebuild index 1365950c7e6..a9ad7951296 100644 --- a/media-libs/bio2jack/bio2jack-0.9-r2.ebuild +++ b/media-libs/bio2jack/bio2jack-0.9-r2.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + inherit autotools DESCRIPTION="A library for porting blocked I/O OSS/ALSA audio applications to JACK" @@ -13,20 +14,23 @@ SLOT="0" KEYWORDS="alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="static-libs" -RDEPEND="media-libs/libsamplerate +BDEPEND=" + virtual/pkgconfig +" +DEPEND=" + media-libs/libsamplerate virtual/jack" -DEPEND="${RDEPEND} - virtual/pkgconfig" +RDEPEND="${DEPEND}" S=${WORKDIR}/${PN} src_prepare() { - eapply_user + default # upstream does not provide a real release, it releases a tarball # with a _prebuilt_ copy of bio2jack. Drop all of the built stuff # and recreate autotools from scratch, then build. - rm -rf *.a *.o *.la *.lo .libs .deps Makefile config.{log,status} stamp-h1 stamp || die + rm -r *.o *.la *.lo .libs .deps Makefile config.{log,status} stamp-h1 || die eautoreconf } @@ -38,8 +42,7 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install + default dobin bio2jack-config - dodoc AUTHORS ChangeLog NEWS README - rm -f "${ED}"usr/lib*/lib*.la + rm -f "${ED}"/usr/lib*/lib*.la || die }