* [gentoo-commits] repo/gentoo:master commit in: media-sound/terminatorx/, media-sound/terminatorx/files/
@ 2016-08-27 15:36 Sergei Trofimovich
0 siblings, 0 replies; 5+ messages in thread
From: Sergei Trofimovich @ 2016-08-27 15:36 UTC (permalink / raw
To: gentoo-commits
commit: 5eb14ebe1692eb526cc16617a1b6f4c8ec8a3786
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 27 15:35:28 2016 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Aug 27 15:35:28 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb14ebe
media-sound/terminatorx: add missing includes, bug #563782
Reported-by: Toralf Förster
Bug: https://bugs.gentoo.org/563782
Package-Manager: portage-2.3.0
.../files/terminatorx-3.84-includes.patch | 28 ++++++++++++++++++++++
media-sound/terminatorx/terminatorx-3.84-r1.ebuild | 3 ++-
2 files changed, 30 insertions(+), 1 deletion(-)
diff --git a/media-sound/terminatorx/files/terminatorx-3.84-includes.patch b/media-sound/terminatorx/files/terminatorx-3.84-includes.patch
new file mode 100644
index 00000000..792ac1d
--- /dev/null
+++ b/media-sound/terminatorx/files/terminatorx-3.84-includes.patch
@@ -0,0 +1,28 @@
+diff --git a/src/tX_mouse.cc b/src/tX_mouse.cc
+--- a/src/tX_mouse.cc
++++ b/src/tX_mouse.cc
+@@ -50,2 +50,3 @@
+ #include <stdlib.h>
++#include <string.h> /* strcmp() */
+
+diff --git a/src/tX_mouse.h b/src/tX_mouse.h
+--- a/src/tX_mouse.h
++++ b/src/tX_mouse.h
+@@ -38,2 +38,3 @@
+ #include <gdk/gdkkeysyms.h>
++#include <gtk/gtk.h> /* GtkWidget */
+
+diff --git a/src/tX_vttgui.cc b/src/tX_vttgui.cc
+--- a/src/tX_vttgui.cc
++++ b/src/tX_vttgui.cc
+@@ -61,2 +61,3 @@
+ #include <stdio.h>
++#include <string.h> /* strrchr() */
+ #include <ctype.h>
+diff --git a/src/tX_global.h b/src/tX_global.h
+--- a/src/tX_global.h
++++ b/src/tX_global.h
+@@ -37,2 +37,3 @@ extern "C" {
+ #include <stdio.h>
++#include <string.h> /* strcpy() */
+ #include "tX_types.h"
diff --git a/media-sound/terminatorx/terminatorx-3.84-r1.ebuild b/media-sound/terminatorx/terminatorx-3.84-r1.ebuild
index f7c4499..08d0e39 100644
--- a/media-sound/terminatorx/terminatorx-3.84-r1.ebuild
+++ b/media-sound/terminatorx/terminatorx-3.84-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -46,6 +46,7 @@ S=${WORKDIR}/${MY_P}
src_prepare() {
# Patch from debian to compile with recent zlib
epatch "${FILESDIR}"/${PN}-3.84-new-zlib.patch
+ epatch "${FILESDIR}"/${PN}-3.84-includes.patch
gnome2_src_prepare
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/terminatorx/, media-sound/terminatorx/files/
@ 2017-07-16 10:17 Pacho Ramos
0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2017-07-16 10:17 UTC (permalink / raw
To: gentoo-commits
commit: 79727ad00ac71ce71ac34358526174cbd088985f
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 16 10:17:14 2017 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jul 16 10:17:14 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79727ad0
media-sound/terminatorx: Fix build failure, bug #604288
Package-Manager: Portage-2.3.6, Repoman-2.3.2
.../files/terminatorx-4.0.1-gtkcombotext.patch | 17 +++++++++++++++++
media-sound/terminatorx/terminatorx-4.0.1.ebuild | 6 ++++++
2 files changed, 23 insertions(+)
diff --git a/media-sound/terminatorx/files/terminatorx-4.0.1-gtkcombotext.patch b/media-sound/terminatorx/files/terminatorx-4.0.1-gtkcombotext.patch
new file mode 100644
index 00000000000..566dfecc210
--- /dev/null
+++ b/media-sound/terminatorx/files/terminatorx-4.0.1-gtkcombotext.patch
@@ -0,0 +1,17 @@
+Description: Fix build failure on kfreebsd
+Author: Sebastian Ramacher <sramacher@debian.org>
+Bug-Debian: https://bugs.debian.org/741623
+Forwarded: yes
+Last-Update: 2014-04-25
+
+--- a/src/tX_dialog.cc
++++ b/src/tX_dialog.cc
+@@ -244,7 +244,7 @@ void append_alsa_device_list(GtkComboBox
+ }
+ }
+ #else
+-void append_alsa_device_list(GtkComboBoxText *combo) {
++void append_alsa_device_list(GtkComboBoxText *combo, char* current) {
+ }
+ #endif
+
diff --git a/media-sound/terminatorx/terminatorx-4.0.1.ebuild b/media-sound/terminatorx/terminatorx-4.0.1.ebuild
index 2909714a688..745580ace2d 100644
--- a/media-sound/terminatorx/terminatorx-4.0.1.ebuild
+++ b/media-sound/terminatorx/terminatorx-4.0.1.ebuild
@@ -44,6 +44,12 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/${MY_P}"
+PATCHES=(
+ # Fails to build with USE="X vorbis -alsa -debug -mad -pulseaudio
+ # -sox", bug #604288
+ "${FILESDIR}"/${P}-gtkcombotext.patch
+)
+
src_configure() {
gnome2_src_configure \
$(use_enable alsa) \
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/terminatorx/, media-sound/terminatorx/files/
@ 2018-03-11 15:17 Pacho Ramos
0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2018-03-11 15:17 UTC (permalink / raw
To: gentoo-commits
commit: cf094cc876081da03ffa018ce07bd76662f1a640
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 11 15:13:01 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Mar 11 15:15:21 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf094cc8
media-sound/terminatorx: Drop old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
media-sound/terminatorx/Manifest | 1 -
.../files/terminatorx-3.84-includes.patch | 28 ---------
.../files/terminatorx-3.84-new-zlib.patch | 19 -------
media-sound/terminatorx/terminatorx-3.84-r1.ebuild | 66 ----------------------
4 files changed, 114 deletions(-)
diff --git a/media-sound/terminatorx/Manifest b/media-sound/terminatorx/Manifest
index 5901a5e4a29..65b3c158b6c 100644
--- a/media-sound/terminatorx/Manifest
+++ b/media-sound/terminatorx/Manifest
@@ -1,2 +1 @@
-DIST terminatorX-3.84.tar.gz 572143 BLAKE2B 9ee576ae34b5349347a4f8dda429d5366ad6e8f9d1907e3cf22af3287e6340d616b59e5f3e56d56b6652768ac216c5ac8e598eb4fac54291fb00ce8bc6dd2d0c SHA512 9b538007acc98b1dd7bb2e310be53bcf1971a94e5c03ea8ca48c59b05f1a0bddd75bf30ab4cfb03d49165098ba63643eaa3bda117cdf833df2438c29a774db6c
DIST terminatorX-4.0.1.tar.bz2 1832692 BLAKE2B 61eeb6362cdf56cb73df3bfbff65cf3699a0ef686d77894b87feab5f25f927267bc28573c3ee41981ded3b452b1d37c035260ffbe0fdcf6d0b0c0319c61a6137 SHA512 06128633e128f2158367dcde0e913dafc68d62644e7a5182a2391829dadcb9c46430d0cac16cb17113939623266f32cb4624a8548a51b8c01bdfa2860a6c0093
diff --git a/media-sound/terminatorx/files/terminatorx-3.84-includes.patch b/media-sound/terminatorx/files/terminatorx-3.84-includes.patch
deleted file mode 100644
index 792ac1db5f0..00000000000
--- a/media-sound/terminatorx/files/terminatorx-3.84-includes.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/src/tX_mouse.cc b/src/tX_mouse.cc
---- a/src/tX_mouse.cc
-+++ b/src/tX_mouse.cc
-@@ -50,2 +50,3 @@
- #include <stdlib.h>
-+#include <string.h> /* strcmp() */
-
-diff --git a/src/tX_mouse.h b/src/tX_mouse.h
---- a/src/tX_mouse.h
-+++ b/src/tX_mouse.h
-@@ -38,2 +38,3 @@
- #include <gdk/gdkkeysyms.h>
-+#include <gtk/gtk.h> /* GtkWidget */
-
-diff --git a/src/tX_vttgui.cc b/src/tX_vttgui.cc
---- a/src/tX_vttgui.cc
-+++ b/src/tX_vttgui.cc
-@@ -61,2 +61,3 @@
- #include <stdio.h>
-+#include <string.h> /* strrchr() */
- #include <ctype.h>
-diff --git a/src/tX_global.h b/src/tX_global.h
---- a/src/tX_global.h
-+++ b/src/tX_global.h
-@@ -37,2 +37,3 @@ extern "C" {
- #include <stdio.h>
-+#include <string.h> /* strcpy() */
- #include "tX_types.h"
diff --git a/media-sound/terminatorx/files/terminatorx-3.84-new-zlib.patch b/media-sound/terminatorx/files/terminatorx-3.84-new-zlib.patch
deleted file mode 100644
index 87b9ca85378..00000000000
--- a/media-sound/terminatorx/files/terminatorx-3.84-new-zlib.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Description: Fix FTBFS errors with newer zlib.
-Author: Moritz Muehlenhoff <muehlenhoff@univention.de>
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663053
-Forwarded: no
----
- src/tX_midiin.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/src/tX_midiin.cc
-+++ b/src/tX_midiin.cc
-@@ -447,7 +447,7 @@ gboolean tX_midiin::midi_learn_destroy(G
-
- void tX_midiin::store_connections(FILE *rc, char *indent)
- {
-- gzFile *rz=NULL;
-+ gzFile rz=NULL;
-
- tX_store("%s<midi_connections>\n", indent);
-
diff --git a/media-sound/terminatorx/terminatorx-3.84-r1.ebuild b/media-sound/terminatorx/terminatorx-3.84-r1.ebuild
deleted file mode 100644
index 45ee96f9e99..00000000000
--- a/media-sound/terminatorx/terminatorx-3.84-r1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-GCONF_DEBUG="no"
-
-inherit gnome2 eutils
-
-MY_P=${P/terminatorx/terminatorX}
-
-DESCRIPTION="Realtime audio synthesizer allowing you to 'scratch' on sampled audio data"
-HOMEPAGE="http://www.terminatorx.org/"
-SRC_URI="http://www.terminatorx.org/dist/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="alsa debug mad vorbis sox"
-
-RDEPEND="
- alsa? ( media-libs/alsa-lib )
- mad? ( media-sound/madplay )
- vorbis? ( media-libs/libvorbis )
- sox? ( media-sound/sox
- media-sound/mpg123 )
- >=x11-libs/gtk+-2.2:2
- >=dev-libs/glib-2.2:2
- x11-libs/libXi
- x11-libs/libXxf86dga
- dev-libs/libxml2
- media-libs/audiofile
- media-libs/ladspa-sdk
- media-libs/ladspa-cmt
- app-text/scrollkeeper
- media-libs/liblrdf
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- x11-proto/xproto
- x11-proto/inputproto
- x11-proto/xf86dgaproto
-"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- # Patch from debian to compile with recent zlib
- epatch "${FILESDIR}"/${PN}-3.84-new-zlib.patch
- epatch "${FILESDIR}"/${PN}-3.84-includes.patch
- gnome2_src_prepare
-}
-
-src_configure() {
- gnome2_src_configure \
- $(use_enable alsa) \
- $(use_enable debug) \
- $(use_enable mad) \
- $(use_enable vorbis) \
- $(use_enable sox)
-}
-
-src_install() {
- gnome2_src_install
- newicon gnome-support/terminatorX-app.png terminatorX.png
- make_desktop_entry terminatorX terminatorX terminatorX AudioVideo
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/terminatorx/, media-sound/terminatorx/files/
@ 2021-10-29 16:21 Miroslav Šulc
0 siblings, 0 replies; 5+ messages in thread
From: Miroslav Šulc @ 2021-10-29 16:21 UTC (permalink / raw
To: gentoo-commits
commit: 988cc71e9323b4766dd100818fa7667b2986042f
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 29 11:42:20 2021 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Oct 29 16:20:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=988cc71e
media-sound/terminatorx: removed obsolete 4.0.1-r2
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/terminatorx/Manifest | 1 -
.../files/terminatorx-4.0.1-desktop-QA.patch | 12 -----
.../files/terminatorx-4.0.1-gtkcombotext.patch | 17 ------
.../terminatorx/terminatorx-4.0.1-r2.ebuild | 63 ----------------------
4 files changed, 93 deletions(-)
diff --git a/media-sound/terminatorx/Manifest b/media-sound/terminatorx/Manifest
index 5b70309c9c5..3c44cda476d 100644
--- a/media-sound/terminatorx/Manifest
+++ b/media-sound/terminatorx/Manifest
@@ -1,2 +1 @@
-DIST terminatorX-4.0.1.tar.bz2 1832692 BLAKE2B 61eeb6362cdf56cb73df3bfbff65cf3699a0ef686d77894b87feab5f25f927267bc28573c3ee41981ded3b452b1d37c035260ffbe0fdcf6d0b0c0319c61a6137 SHA512 06128633e128f2158367dcde0e913dafc68d62644e7a5182a2391829dadcb9c46430d0cac16cb17113939623266f32cb4624a8548a51b8c01bdfa2860a6c0093
DIST terminatorX-4.1.0.tar.bz2 1832295 BLAKE2B a328d05bb0c3c88719eb711dcf3f50eac08cd140e3225f42633744b39ce49f3e074263997ec21b2cc245740fa3f672a19b89d929fad1d0131981988fc80f37fc SHA512 2dc87bdbb4f4d24e10f0c8fac99b4ccecac6036c6dc950184cbdd1d05fe0a4c723ea1b04c49837fb0aa8f149ca9d2fb5d2c42f5109031184980a14fe549312fc
diff --git a/media-sound/terminatorx/files/terminatorx-4.0.1-desktop-QA.patch b/media-sound/terminatorx/files/terminatorx-4.0.1-desktop-QA.patch
deleted file mode 100644
index 970b72f4de8..00000000000
--- a/media-sound/terminatorx/files/terminatorx-4.0.1-desktop-QA.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/terminatorX.desktop
-+++ b/terminatorX.desktop
-@@ -8,5 +8,5 @@ Comment=Versatile DJ scratching and mixing application.
- Terminal=false
- Type=Application
- Icon=terminatorX
--Categories=Application;AudioVideo;
-+Categories=AudioVideo;
- StartupNotify=true
---
-2.26.2
-
diff --git a/media-sound/terminatorx/files/terminatorx-4.0.1-gtkcombotext.patch b/media-sound/terminatorx/files/terminatorx-4.0.1-gtkcombotext.patch
deleted file mode 100644
index 566dfecc210..00000000000
--- a/media-sound/terminatorx/files/terminatorx-4.0.1-gtkcombotext.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Fix build failure on kfreebsd
-Author: Sebastian Ramacher <sramacher@debian.org>
-Bug-Debian: https://bugs.debian.org/741623
-Forwarded: yes
-Last-Update: 2014-04-25
-
---- a/src/tX_dialog.cc
-+++ b/src/tX_dialog.cc
-@@ -244,7 +244,7 @@ void append_alsa_device_list(GtkComboBox
- }
- }
- #else
--void append_alsa_device_list(GtkComboBoxText *combo) {
-+void append_alsa_device_list(GtkComboBoxText *combo, char* current) {
- }
- #endif
-
diff --git a/media-sound/terminatorx/terminatorx-4.0.1-r2.ebuild b/media-sound/terminatorx/terminatorx-4.0.1-r2.ebuild
deleted file mode 100644
index 5940c58dd66..00000000000
--- a/media-sound/terminatorx/terminatorx-4.0.1-r2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-MY_P=${P/terminatorx/terminatorX}
-
-DESCRIPTION="Realtime audio synthesizer allowing you to 'scratch' on sampled audio data"
-HOMEPAGE="http://www.terminatorx.org/"
-SRC_URI="http://www.terminatorx.org/dist/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-# Making X optional fails when disabled: https://bugs.gentoo.org/636832
-IUSE="alsa debug mad pulseaudio vorbis sox"
-
-RDEPEND="
- alsa? ( media-libs/alsa-lib )
- mad? ( media-sound/madplay )
- pulseaudio? ( media-sound/pulseaudio )
- vorbis? ( media-libs/libvorbis )
- sox? ( media-sound/sox
- media-sound/mpg123 )
- x11-libs/gtk+:3
- >=dev-libs/glib-2.2:2
-
- x11-libs/libXi
- x11-libs/libXxf86dga
-
- dev-libs/libxml2:2
- media-libs/audiofile:=
- media-libs/ladspa-sdk
- media-libs/liblrdf
- media-plugins/cmt-plugins
-"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto
- app-text/gnome-doc-utils
- virtual/pkgconfig
-"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- # Fails to build with USE="X vorbis -alsa -debug -mad -pulseaudio
- # -sox", bug #604288
- "${FILESDIR}"/${P}-gtkcombotext.patch
- # 740502
- "${FILESDIR}"/${P}-desktop-QA.patch
-)
-
-src_configure() {
- gnome2_src_configure \
- --enable-x11 \
- $(use_enable alsa) \
- $(use_enable debug) \
- $(use_enable mad) \
- $(use_enable pulseaudio pulse) \
- $(use_enable vorbis) \
- $(use_enable sox)
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/terminatorx/, media-sound/terminatorx/files/
@ 2022-11-30 8:29 Miroslav Šulc
0 siblings, 0 replies; 5+ messages in thread
From: Miroslav Šulc @ 2022-11-30 8:29 UTC (permalink / raw
To: gentoo-commits
commit: 44b3cce7344c3d1b1a40d0330a8d2757da9149a9
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 08:27:49 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 08:29:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b3cce7
media-sound/terminatorx: removed obsolete 4.1.0
Bug: https://bugs.gentoo.org/880707
Closes: https://bugs.gentoo.org/740522
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/terminatorx/Manifest | 1 -
.../files/terminatorx-4.1.0-metadata-dir.patch | 13 -----
media-sound/terminatorx/terminatorx-4.1.0.ebuild | 65 ----------------------
3 files changed, 79 deletions(-)
diff --git a/media-sound/terminatorx/Manifest b/media-sound/terminatorx/Manifest
index 292976ca1edc..c09151992ce3 100644
--- a/media-sound/terminatorx/Manifest
+++ b/media-sound/terminatorx/Manifest
@@ -1,2 +1 @@
-DIST terminatorX-4.1.0.tar.bz2 1832295 BLAKE2B a328d05bb0c3c88719eb711dcf3f50eac08cd140e3225f42633744b39ce49f3e074263997ec21b2cc245740fa3f672a19b89d929fad1d0131981988fc80f37fc SHA512 2dc87bdbb4f4d24e10f0c8fac99b4ccecac6036c6dc950184cbdd1d05fe0a4c723ea1b04c49837fb0aa8f149ca9d2fb5d2c42f5109031184980a14fe549312fc
DIST terminatorX-4.2.0.tar.bz2 1821474 BLAKE2B dc86555bdb0d837d12144b392cf6a1cdf707268a3634940bed66792432ef014d168dbee2fd540a253ad369ff4aeaf5d0b7dfb252f3c97550a2c4af5ad1a58945 SHA512 e10ac7acd91441dabad80ae7c144b56f39ebfb4c76f0e3bfab093937c69d2c6b0834a68a0a216994898ae05a7f9ae5ebac0b1fa52d65d627b7ed01785fc55941
diff --git a/media-sound/terminatorx/files/terminatorx-4.1.0-metadata-dir.patch b/media-sound/terminatorx/files/terminatorx-4.1.0-metadata-dir.patch
deleted file mode 100644
index 3f873271e00b..000000000000
--- a/media-sound/terminatorx/files/terminatorx-4.1.0-metadata-dir.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/Makefile.in b/Makefile.in
-index cd70e20..5b9a142 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -362,7 +362,7 @@ EXTRA_DIST = COPYING-DOCS\
- # Destkop Entry
- desktopdir = $(datadir)/applications
- desktop_DATA = terminatorX.desktop
--appdatadir = $(datarootdir)/appdata
-+appdatadir = $(datarootdir)/metadata
- appdata_DATA = terminatorX.appdata.xml
- mimedir = $(datadir)/mime-info
- mime_DATA = terminatorX.mime terminatorX.keys
diff --git a/media-sound/terminatorx/terminatorx-4.1.0.ebuild b/media-sound/terminatorx/terminatorx-4.1.0.ebuild
deleted file mode 100644
index a5e5fd161367..000000000000
--- a/media-sound/terminatorx/terminatorx-4.1.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit gnome2
-
-MY_P=${P/terminatorx/terminatorX}
-
-DESCRIPTION="Realtime audio synthesizer allowing you to 'scratch' on sampled audio data"
-HOMEPAGE="https://terminatorx.org/"
-# this is the original location but there is an issue with their certificate so mirroring the file
-#SRC_URI="https://terminatorx.org/dist/${MY_P}.tar.bz2"
-SRC_URI="https://dev.gentoo.org/~fordfrog/distfiles/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-# Making X optional fails when disabled: https://bugs.gentoo.org/636832
-IUSE="alsa debug jack mad pulseaudio vorbis sox"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-RDEPEND="
- alsa? ( media-libs/alsa-lib )
- jack? ( virtual/jack )
- mad? ( media-sound/madplay )
- pulseaudio? ( media-sound/pulseaudio )
- vorbis? ( media-libs/libvorbis )
- sox? ( media-sound/sox
- media-sound/mpg123 )
- x11-libs/gtk+:3
- >=dev-libs/glib-2.2:2
-
- x11-libs/libXi
- x11-libs/libXxf86dga
-
- dev-libs/libxml2:2
- media-libs/audiofile:=
- media-libs/ladspa-sdk
- media-libs/liblrdf
- media-plugins/cmt-plugins
-"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto
- app-text/gnome-doc-utils
- virtual/pkgconfig
-"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}/${P}-metadata-dir.patch"
-)
-
-src_configure() {
- gnome2_src_configure \
- --enable-x11 \
- $(use_enable alsa) \
- $(use_enable debug) \
- $(use_enable jack) \
- $(use_enable mad) \
- $(use_enable pulseaudio pulse) \
- $(use_enable vorbis) \
- $(use_enable sox)
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-11-30 8:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-11 15:17 [gentoo-commits] repo/gentoo:master commit in: media-sound/terminatorx/, media-sound/terminatorx/files/ Pacho Ramos
-- strict thread matches above, loose matches on Subject: below --
2022-11-30 8:29 Miroslav Šulc
2021-10-29 16:21 Miroslav Šulc
2017-07-16 10:17 Pacho Ramos
2016-08-27 15:36 Sergei Trofimovich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox