* [gentoo-commits] repo/gentoo:master commit in: media-sound/galan/
@ 2019-12-12 16:03 David Seifert
0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2019-12-12 16:03 UTC (permalink / raw
To: gentoo-commits
commit: 3e939ae2f59e4cb00d9f868178ed8e52f88c1b29
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 12 16:02:35 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> 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 <soap <AT> 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
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/galan/
@ 2020-04-27 7:56 Mikle Kolyada
0 siblings, 0 replies; 2+ messages in thread
From: Mikle Kolyada @ 2020-04-27 7:56 UTC (permalink / raw
To: gentoo-commits
commit: 6dc4b3745f09cec4cdf6f6f4dcac788839945e79
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 27 07:55:27 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Apr 27 07:55:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dc4b374
media-sound/galan: remove last-rited pkg
Closes: https://bugs.gentoo.org/show_bug.cgi?id=367887
Closes: https://bugs.gentoo.org/show_bug.cgi?id=700882
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
media-sound/galan/Manifest | 1 -
media-sound/galan/galan-0.3.0_beta7.ebuild | 51 ------------------------------
media-sound/galan/metadata.xml | 11 -------
3 files changed, 63 deletions(-)
diff --git a/media-sound/galan/Manifest b/media-sound/galan/Manifest
deleted file mode 100644
index 554906af6e0..00000000000
--- a/media-sound/galan/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST galan-0.3.0_beta7.tar.gz 1138937 BLAKE2B 6f132a7371890d95f15bb06862d50ac556009ec778c536fd0da978ce6e6118c53ef81ed43cf62bd593253164aef526a3f9440ddd505a78f08bf16b72adce1772 SHA512 86ef525785c77c068146ea2cc4992091ad623bc43fde3603b00d9e8ef4583c0ecf60d061ab47386eb67dc7ef269a4631cdeb19317f3eeebf2fb2fc82c5b825a8
diff --git a/media-sound/galan/galan-0.3.0_beta7.ebuild b/media-sound/galan/galan-0.3.0_beta7.ebuild
deleted file mode 100644
index 1ab365fd9a3..00000000000
--- a/media-sound/galan/galan-0.3.0_beta7.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="gAlan - Graphical Audio Language"
-HOMEPAGE="http://galan.sourceforge.net/"
-SRC_URI="mirror://sourceforge/galan/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="alsa jack opengl vorbis"
-
-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:2=
- virtual/glu
- )
- vorbis? ( media-sound/vorbis-tools )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
- rm README.w32 || die
-}
-
-src_configure() {
- # Use lrdf.pc to get -I/usr/include/raptor2 (lrdf.h -> raptor.h)
- append-cppflags $($(tc-getPKG_CONFIG) --cflags lrdf)
- econf --disable-static
-}
-
-src_install() {
- default
- dodoc NOTES
-
- # no static archives
- find "${D}" -name '*.la' -delete || die
-}
diff --git a/media-sound/galan/metadata.xml b/media-sound/galan/metadata.xml
deleted file mode 100644
index 8fa20f159a4..00000000000
--- a/media-sound/galan/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sound@gentoo.org</email>
- <name>Gentoo Sound project</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">galan</remote-id>
- </upstream>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-04-27 7:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-12 16:03 [gentoo-commits] repo/gentoo:master commit in: media-sound/galan/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2020-04-27 7:56 Mikle Kolyada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox