summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-02 17:20:46 +0100
committerDavid Seifert <soap@gentoo.org>2017-01-04 12:12:53 +0200
commit4a6b22724e94548ca703cd033052471164f60d8d (patch)
treebab66c1698091174f8ad42bf1a7129c7b87df549 /media-sound/lingot
parentmedia-sound/id3v2: remove unused patches (diff)
downloadgentoo-4a6b22724e94548ca703cd033052471164f60d8d.tar.gz
gentoo-4a6b22724e94548ca703cd033052471164f60d8d.tar.bz2
gentoo-4a6b22724e94548ca703cd033052471164f60d8d.zip
media-sound/lingot: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/3305
Diffstat (limited to 'media-sound/lingot')
-rw-r--r--media-sound/lingot/files/lingot-0.7.6-clean-install.patch24
-rw-r--r--media-sound/lingot/files/lingot-0.9.0-jack.patch32
2 files changed, 0 insertions, 56 deletions
diff --git a/media-sound/lingot/files/lingot-0.7.6-clean-install.patch b/media-sound/lingot/files/lingot-0.7.6-clean-install.patch
deleted file mode 100644
index 688aea188efd..000000000000
--- a/media-sound/lingot/files/lingot-0.7.6-clean-install.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ur lingot-0.7.6.orig/Makefile.am lingot-0.7.6/Makefile.am
---- lingot-0.7.6.orig/Makefile.am 2007-12-23 21:45:19.000000000 +0200
-+++ lingot-0.7.6/Makefile.am 2008-05-08 13:00:18.000000000 +0300
-@@ -8,19 +8,12 @@
- lingotdocdir = ${docdir}
- lingotdoc_DATA = \
- README\
-- COPYING\
- AUTHORS\
- ChangeLog\
-- INSTALL\
- NEWS\
- TODO\
- THANKS\
-- MAINTAINERS\
-- src/lingot-background.xpm\
-- src/lingot-logo.xpm\
-- intltool-extract.in\
-- intltool-merge.in\
-- intltool-update.in
-+ MAINTAINERS
-
- EXTRA_DIST = $(lingotdoc_DATA)
-
diff --git a/media-sound/lingot/files/lingot-0.9.0-jack.patch b/media-sound/lingot/files/lingot-0.9.0-jack.patch
deleted file mode 100644
index c7885a4098e0..000000000000
--- a/media-sound/lingot/files/lingot-0.9.0-jack.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/src/lingot-audio-jack.c
-+++ b/src/lingot-audio-jack.c
-@@ -177,7 +177,7 @@
- const char **ports = NULL;
- const char* exception;
-
-- unsigned long int flags = JackPortIsActive | JackPortIsOutput;
-+ unsigned long int flags = JackPortIsOutput;
-
- try {
- if (client != NULL) {
-@@ -265,8 +265,9 @@
- throw(_("Cannot activate client"));
- }
-
-- ports = jack_get_ports(audio->jack_client, NULL, NULL, JackPortIsActive
-- | JackPortIsOutput);
-+ ports
-+ = jack_get_ports(audio->jack_client, NULL, NULL,
-+ JackPortIsOutput);
- if (ports == NULL) {
- throw(_("No active capture ports"));
- }
-@@ -321,7 +322,7 @@
- # ifdef JACK
- //jack_cycle_wait(audio->jack_client);
- const char** ports = jack_get_ports(audio->jack_client, NULL, NULL,
-- JackPortIsActive | JackPortIsOutput);
-+ JackPortIsOutput);
-
- if (ports != NULL) {
- int i, j = 0;