commit: fdd5a72b90396ae4a152df30a9f67437def59a74 Author: Florian Schmaus <flow <AT> gentoo <DOT> org> AuthorDate: Sat Jan 1 15:47:55 2022 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Sat Jan 1 15:48:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdd5a72b
x11-plugins/gkrellshoot: respect LDFLAGS Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> Closes: https://bugs.gentoo.org/338867 .../gkrellshoot/files/makefile-respect-flags.patch | 26 ++++++++++++++++++++++ ...0.4.4-r2.ebuild => gkrellshoot-0.4.4-r3.ebuild} | 6 ++++- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/x11-plugins/gkrellshoot/files/makefile-respect-flags.patch b/x11-plugins/gkrellshoot/files/makefile-respect-flags.patch new file mode 100644 index 000000000000..8de89009dbbc --- /dev/null +++ b/x11-plugins/gkrellshoot/files/makefile-respect-flags.patch @@ -0,0 +1,26 @@ +--- a/Makefile 2006-12-09 04:24:36.000000000 +0100 ++++ b/Makefile 2013-03-16 13:50:00.147834790 +0100 +@@ -1,16 +1,20 @@ + GTK_INCLUDE = `pkg-config gtk+-2.0 --cflags` + GTK_LIB = `pkg-config gtk+-2.0 --libs` + +-FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE) ++FLAGS = -fPIC $(GTK_INCLUDE) + LIBS = $(GTK_LIB) + LFLAGS = -shared + +-CC = gcc $(CFLAGS) $(FLAGS) + + OBJS = gkrellshoot.o + ++all: gkrellshoot.so ++ ++%.o: %.c ++ $(CC) $(CFLAGS) $(LDFLAGS) $(FLAGS) -c -o $@ $< ++ + gkrellshoot.so: $(OBJS) +- $(CC) $(OBJS) -o gkrellshoot.so $(LFLAGS) $(LIBS) ++ $(CC) $(CFLAGS) $(LDFLAGS) $(FLAGS) $(OBJS) -o gkrellshoot.so $(LFLAGS) $(LIBS) + + clean: + rm -f *.o core *.so* *.bak *~ diff --git a/x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r2.ebuild b/x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r3.ebuild similarity index 82% rename from x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r2.ebuild rename to x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r3.ebuild index ad424be2249b..028ef92f7eb6 100644 --- a/x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r2.ebuild +++ b/x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -20,3 +20,7 @@ RDEPEND=" virtual/imagemagick-tools" S=${WORKDIR}/${P/s/S} + +PATCHES=( + "${FILESDIR}"/makefile-respect-flags.patch +)
