diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-11-27 12:50:20 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-11-27 13:02:13 +0100 |
commit | 610f4c9bd8a4b53d38d3172cc31ea74fe0dbdf66 (patch) | |
tree | b61e637b91e3448ef17e7b7e54da8969faa5edef /media-sound/mp3splt-gtk/files | |
parent | kde-misc/chromi: remove unused patch (diff) | |
download | gentoo-610f4c9bd8a4b53d38d3172cc31ea74fe0dbdf66.tar.gz gentoo-610f4c9bd8a4b53d38d3172cc31ea74fe0dbdf66.tar.bz2 gentoo-610f4c9bd8a4b53d38d3172cc31ea74fe0dbdf66.zip |
media-sound/mp3splt-gtk: Drop old
Package-Manager: portage-2.3.2
Diffstat (limited to 'media-sound/mp3splt-gtk/files')
4 files changed, 0 insertions, 171 deletions
diff --git a/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.7-disable-docs.patch b/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.7-disable-docs.patch deleted file mode 100644 index fa7b5f588553..000000000000 --- a/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.7-disable-docs.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 12880888a2857f73cc87b9bdf5505fed0cbc6bbe Mon Sep 17 00:00:00 2001 -From: Sebastian Pipping <sebastian@pipping.org> -Date: Wed, 3 Aug 2011 20:53:22 +0200 -Subject: [PATCH 2/2] Disable documentation - ---- - configure.ac | 17 +++-------------- - 1 files changed, 3 insertions(+), 14 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 1c564c5..260602d 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -269,20 +269,9 @@ echo - - # Check for doxygen, so we can decide if we add it to the "doc" - # make target. --AC_PATH_PROG([DOXYGEN],[doxygen]) --AC_ARG_VAR(DOXYGEN, -- [Location of the 'doxygen' program; if found we can generate documentation for the C code]) --AM_CONDITIONAL(HAVE_DOXYGEN, [ test "x$DOXYGEN" != "x" ]) -- --# Check for dot, the tool that makes the nice little caller graphs for the --# doxygen documentation. --AC_PATH_PROG([GRAPHVIZ],[dot]) --AC_ARG_VAR(GRAPHVIZ, -- [Location of the 'dot' program from the graphviz suite; if found we can generate caller graphs for the documentation of the C code]) --AM_CONDITIONAL(HAVE_GRAPHVIZ, [ test "x$GRAPHVIZ" != "x" ]) --if test x$HAVE_DOT = "xfalse"; then -- AC_MSG_WARN([*** dot from the graphviz package not found, inheritance diagrams will not be generated in code documentation]) --fi -+AM_CONDITIONAL(HAVE_DOXYGEN, [ false ]) -+ -+AM_CONDITIONAL(HAVE_GRAPHVIZ, [ false ]) - - ################################################# - # Generate Makefile --- -1.7.6 - diff --git a/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.7.0.930-gtk.patch b/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.7.0.930-gtk.patch deleted file mode 100644 index bb4b2f763998..000000000000 --- a/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.7.0.930-gtk.patch +++ /dev/null @@ -1,44 +0,0 @@ -From bb1c3cb3ffd1081d56e48d87ab05d31ad05d89de Mon Sep 17 00:00:00 2001 -From: Sebastian Pipping <sebastian@pipping.org> -Date: Fri, 23 Sep 2011 23:09:47 +0200 -Subject: [PATCH] Allow specifying a specific slot of GTK - ---- - configure.ac | 18 +++++++++++++----- - 1 files changed, 13 insertions(+), 5 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 2157019..fbcadcf 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -150,14 +150,22 @@ fi - - ################################################# - #Check for GTK --ifdef([AM_PATH_GTK_3_0], --[ -+AC_ARG_ENABLE(gtk3, [ -+AC_HELP_STRING([--enable-gtk3], [Compile against GTK 3.x explicitly (default: use GTK 3.x if available)]) -+AC_HELP_STRING([--disable-gtk3], [Compile against GTK 2.x explicitly (default: use GTK 3.x if available)])], -+ [enable_gtk3=$enableval],[enable_gtk3="auto"]) -+ -+if test "x$enable_gtk3" = xauto; then -+ AC_MSG_NOTICE([selecting GTK 2.x/3.x automatically]) -+ ifdef([AM_PATH_GTK_3_0],[enable_gtk3=yes],[enable_gtk3=no]) -+fi -+ -+if test "x$enable_gtk3" = xyes; then - CFLAGS="$CFLAGS -DGTK_DISABLE_SINGLE_INCLUDES -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGSEAL_ENABLE" - AM_PATH_GTK_3_0(3.0.0,,AC_MSG_ERROR(mp3splt-gtk needs GTK+ >= 3.0.0)) --], --[ -+else - AM_PATH_GTK_2_0(2.20.0,,AC_MSG_ERROR(mp3splt-gtk needs GTK+ >= 2.20.0)) --]) -+fi - - ################################################# - #Check for libmp3splt --- -1.7.6.1 - diff --git a/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.8.2-automake-1.13.patch b/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.8.2-automake-1.13.patch deleted file mode 100644 index 109682f46fcc..000000000000 --- a/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.8.2-automake-1.13.patch +++ /dev/null @@ -1,61 +0,0 @@ -From cb38e44936aa6a923f9dedffb7084de657caa54f Mon Sep 17 00:00:00 2001 -From: Sebastian Pipping <sebastian@pipping.org> -Date: Sat, 8 Jun 2013 21:44:45 +0200 -Subject: [PATCH] Resolve use of $(top_srcdir) in TESTS to stop Automake 1.13.1 - from erroring out - -This is actually a cheap port of a fix to upstream bug #153 -https://sourceforge.net/p/mp3splt/bugs/152/ -https://sourceforge.net/p/mp3splt/code/1326/ ---- - test/Makefile.am | 7 +++++-- - test/run-tests.sh | 7 ++++++- - 2 files changed, 11 insertions(+), 3 deletions(-) - -diff --git a/test/Makefile.am b/test/Makefile.am -index bb77e86..81159e3 100644 ---- a/test/Makefile.am -+++ b/test/Makefile.am -@@ -34,11 +34,14 @@ test_douglas_peucker_la_SOURCES = test_douglas_peucker.c tests.h \ - $(top_srcdir)/src/douglas_peucker.c $(top_srcdir)/src/douglas_peucker.h \ - $(top_srcdir)/src/utilities.c $(top_srcdir)/src/utilities.h - --TESTS = $(top_srcdir)/test/run-tests.sh --TESTS_ENVIRONMENT = NO_MAKE=yes CUTTER="$(CUTTER)" -+TESTS = run-tests.sh -+TESTS_ENVIRONMENT = NO_MAKE=yes CUTTER="$(CUTTER)" TESTS_DIR="$(top_builddir)/test" - - echo-cutter: - @echo $(CUTTER) - -+echo-tests-dir: -+ @echo $(top_builddir)/test -+ - endif - -diff --git a/test/run-tests.sh b/test/run-tests.sh -index a7bee7a..49ca19e 100755 ---- a/test/run-tests.sh -+++ b/test/run-tests.sh -@@ -5,6 +5,11 @@ top_dir="$BASE_DIR/.." - - if test -z "$NO_MAKE"; then - make -C $top_dir > /dev/null || exit 1 -+ TESTS_DIR=$BASE_DIR -+else -+ if test -z "$TESTS_DIR"; then -+ TESTS_DIR="`make -s -C $BASE_DIR echo-tests-dir`" -+ fi - fi - - if test -z "$CUTTER"; then -@@ -21,5 +26,5 @@ fi - exit 1 - } - --$CUTTER -s $BASE_DIR "$@" $BASE_DIR -+$CUTTER -s $BASE_DIR "$@" $TESTS_DIR - --- -1.8.2.1 - diff --git a/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.8.2-desktop-file.patch b/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.8.2-desktop-file.patch deleted file mode 100644 index f03c8a1e2987..000000000000 --- a/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.8.2-desktop-file.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 2db2b45c9b78561370b620a6a64d2d5e7c988a78 Mon Sep 17 00:00:00 2001 -From: Sebastian Pipping <sebastian@pipping.org> -Date: Wed, 1 May 2013 22:27:25 +0200 -Subject: [PATCH] Remove deprecated category "Application" from .desktop file - template - ---- - mp3splt-gtk.desktop.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/mp3splt-gtk.desktop.in b/mp3splt-gtk.desktop.in -index d7d0c98..67e4e1b 100644 ---- a/mp3splt-gtk.desktop.in -+++ b/mp3splt-gtk.desktop.in -@@ -6,7 +6,7 @@ Comment=Split mp3 and ogg files without decoding - Icon=PREFIX/mp3splt-gtk_ico.svg - - Type=Application --Categories=Application;AudioVideo;Audio;AudioVideoEditing; -+Categories=AudioVideo;Audio;AudioVideoEditing; - - Exec=mp3splt-gtk - StartupNotify=false --- -1.8.1.5 - |