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 66842138335 for ; Thu, 12 Dec 2019 16:03:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BB18E086F; Thu, 12 Dec 2019 16:03: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 E89F8E086F for ; Thu, 12 Dec 2019 16:03:17 +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 EC8AF34D967 for ; Thu, 12 Dec 2019 16:03:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 921AC778 for ; Thu, 12 Dec 2019 16:03:15 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1576166555.3e939ae2f59e4cb00d9f868178ed8e52f88c1b29.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/galan/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/galan/galan-0.3.0_beta7.ebuild X-VCS-Directories: media-sound/galan/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3e939ae2f59e4cb00d9f868178ed8e52f88c1b29 X-VCS-Branch: master Date: Thu, 12 Dec 2019 16:03: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4bf68834-7e39-4535-b425-8fa273aea45c X-Archives-Hash: 507aae99cc5f6dad57be340a6872777c commit: 3e939ae2f59e4cb00d9f868178ed8e52f88c1b29 Author: David Seifert gentoo org> AuthorDate: Thu Dec 12 16:02:35 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Dec 12 16:02:35 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e939ae2 media-sound/galan: Port to EAPI 7 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> media-sound/galan/galan-0.3.0_beta7.ebuild | 42 ++++++++++++++++++------------ 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/media-sound/galan/galan-0.3.0_beta7.ebuild b/media-sound/galan/galan-0.3.0_beta7.ebuild index 174e6f949b2..1ab365fd9a3 100644 --- a/media-sound/galan/galan-0.3.0_beta7.ebuild +++ b/media-sound/galan/galan-0.3.0_beta7.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 + inherit flag-o-matic toolchain-funcs DESCRIPTION="gAlan - Graphical Audio Language" @@ -11,25 +12,29 @@ SRC_URI="mirror://sourceforge/galan/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="vorbis alsa opengl jack" +IUSE="alsa jack opengl vorbis" -RDEPEND="x11-libs/gtk+:2 - vorbis? ( >=media-sound/vorbis-tools-1.0 ) - alsa? ( >=media-libs/alsa-lib-0.9.0_rc1 ) +RDEPEND=" + media-libs/liblrdf:= + media-libs/ladspa-sdk + media-libs/audiofile:= + media-libs/libsndfile:= + sci-libs/fftw:2.1= + x11-libs/gtk+:2 + alsa? ( media-libs/alsa-lib:= ) + jack? ( virtual/jack ) opengl? ( - >=x11-libs/gtkglarea-1.99.0:2 + x11-libs/gtkglarea:2= virtual/glu ) - jack? ( >=media-sound/jack-audio-connection-kit-0.80.0 ) - media-libs/liblrdf - media-libs/ladspa-sdk - media-libs/audiofile - media-libs/libsndfile - sci-libs/fftw:2.1" -DEPEND="${RDEPEND} - virtual/pkgconfig" + vorbis? ( media-sound/vorbis-tools )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" -DOCS=( AUTHORS NEWS NOTES README TODO ) +src_prepare() { + default + rm README.w32 || die +} src_configure() { # Use lrdf.pc to get -I/usr/include/raptor2 (lrdf.h -> raptor.h) @@ -39,5 +44,8 @@ src_configure() { src_install() { default - find "${D}" -name '*.la' -exec rm -f {} + + dodoc NOTES + + # no static archives + find "${D}" -name '*.la' -delete || die }