summaryrefslogtreecommitdiff
path: root/app-misc/g15mpd/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-misc/g15mpd/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-misc/g15mpd/files')
-rw-r--r--app-misc/g15mpd/files/g15mpd-1.0.0-cflags-and-lib-fix.patch18
-rw-r--r--app-misc/g15mpd/files/g15mpd-1.0.0-libmpd.patch34
2 files changed, 0 insertions, 52 deletions
diff --git a/app-misc/g15mpd/files/g15mpd-1.0.0-cflags-and-lib-fix.patch b/app-misc/g15mpd/files/g15mpd-1.0.0-cflags-and-lib-fix.patch
deleted file mode 100644
index 5bdb1261f367..000000000000
--- a/app-misc/g15mpd/files/g15mpd-1.0.0-cflags-and-lib-fix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -ruN g15mpd-1.0.0/Makefile.am g15mpd-1.0.0-patched/Makefile.am
---- g15mpd-1.0.0/Makefile.am 2014-01-17 13:43:28.536056492 -0500
-+++ g15mpd-1.0.0-patched/Makefile.am 2014-01-17 13:43:31.596056410 -0500
-@@ -1,12 +1,12 @@
- AM_CPPFLAGS = @libmpd_CFLAGS@
--AM_CFLAGS = -O3 -Wall @CFLAGS@ -I$(top_builddir) -I$(top_srcdir)
-+AM_CFLAGS = @CFLAGS@ -I$(top_builddir) -I$(top_srcdir)
- METASOURCES = AUTO
- bin_PROGRAMS = g15mpd
-
- docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
- doc_DATA = README ChangeLog AUTHORS NEWS COPYING
-
--LIBS = -lg15daemon_client -lg15render -lX11 -lXtst @libmpd_LIBS@
-+LIBS = -lpthread -lg15daemon_client -lg15render -lX11 -lXtst @libmpd_LIBS@
- IMCLUDES = -I
- g15mpd_LDFLAGS = -avoid-version
- g15mpd_SOURCES = g15mpd.c
diff --git a/app-misc/g15mpd/files/g15mpd-1.0.0-libmpd.patch b/app-misc/g15mpd/files/g15mpd-1.0.0-libmpd.patch
deleted file mode 100644
index 57d2fb8a1ef6..000000000000
--- a/app-misc/g15mpd/files/g15mpd-1.0.0-libmpd.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-diff --git a/Makefile.am b/Makefile.am
-index e407dab..6404618 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -1,4 +1,4 @@
--
-+AM_CPPFLAGS = @libmpd_CFLAGS@
- AM_CFLAGS = -O3 -Wall @CFLAGS@ -I$(top_builddir) -I$(top_srcdir)
- METASOURCES = AUTO
- bin_PROGRAMS = g15mpd
-@@ -6,7 +6,7 @@ bin_PROGRAMS = g15mpd
- docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
- doc_DATA = README ChangeLog AUTHORS NEWS COPYING
-
--LIBS = -lg15daemon_client -lg15render -lX11 -lXtst -lmpd
-+LIBS = -lg15daemon_client -lg15render -lX11 -lXtst @libmpd_LIBS@
- IMCLUDES = -I
- g15mpd_LDFLAGS = -avoid-version
- g15mpd_SOURCES = g15mpd.c
-diff --git a/configure.in b/configure.in
-index aaa361c..83281d0 100644
---- a/configure.in
-+++ b/configure.in
-@@ -18,7 +18,9 @@ AC_HEADER_SYS_WAIT
- AC_CHECK_HEADERS(g15daemon_client.h libg15render.h,,AC_MSG_ERROR(["libg15daemon_client (or its devel package) could not be found. please install it"]))
- AC_CHECK_HEADERS(X11/Xlib.h X11/XF86keysym.h,,AC_MSG_ERROR(["Xorg development files could not be found. please install the devel package"]))
- AC_CHECK_HEADERS(X11/extensions/XTest.h,,AC_MSG_ERROR(["Xorg XTEST Extension devel headers could not be found. please install the devel package"]))
--AC_CHECK_HEADERS(libmpd/libmpd.h,,AC_MSG_ERROR(["libmpd development files could not be found. please install the libmpd devel package"]))
-+PKG_CHECK_MODULES([libmpd], [libmpd])
-+AC_SUBST(libmpd_LIBS)
-+AC_SUBST(libmpd_CFLAGS)
- AC_PATH_X
-
- AC_OUTPUT(Makefile)