diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-01-29 10:19:29 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-29 21:09:40 +0100 |
commit | 5fa7251590c72c21fbe99d916f24328feda3266e (patch) | |
tree | 3f50d2d9358ae75d10b865af2da9050a43e567a3 /sci-visualization | |
parent | sci-visualization/epix: remove unused patches (diff) | |
download | gentoo-5fa7251590c72c21fbe99d916f24328feda3266e.tar.gz gentoo-5fa7251590c72c21fbe99d916f24328feda3266e.tar.bz2 gentoo-5fa7251590c72c21fbe99d916f24328feda3266e.zip |
sci-visualization/g3data: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3709
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/g3data/files/g3data-1.5.3-makefile.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/sci-visualization/g3data/files/g3data-1.5.3-makefile.patch b/sci-visualization/g3data/files/g3data-1.5.3-makefile.patch deleted file mode 100644 index 4f393442a69c..000000000000 --- a/sci-visualization/g3data/files/g3data-1.5.3-makefile.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- Makefile.orig 2008-12-14 08:20:17.000000000 +0000 -+++ Makefile 2009-02-26 19:26:26.052491697 +0000 -@@ -1,15 +1,13 @@ --CC=gcc --CFLAGS=-Wall `pkg-config --cflags gtk+-2.0` -+MYCFLAGS=-Wall `pkg-config --cflags gtk+-2.0` - LIBS=`pkg-config --libs gtk+-2.0` - bindir ?= /usr/bin - mandir ?= /usr/share/man - - .c.o: -- $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -+ $(CC) -c $(CFLAGS) $(CPPFLAGS) $(MYCFLAGS) $< - --g3data: main.o sort.o points.o drawing.o g3data.1.gz -- $(CC) $(CFLAGS) -o g3data main.o sort.o points.o drawing.o $(LIBS) -- strip g3data -+g3data: main.o sort.o points.o drawing.o -+ $(CC) $(LDFLAGS) -o g3data main.o sort.o points.o drawing.o $(LIBS) - - main.o: main.c main.h strings.h vardefs.h - -@@ -19,17 +17,17 @@ - - drawing.o: drawing.c main.h - --g3data.1.gz: g3data.sgml -+g3data.1: g3data.sgml - rm -f *.1 - onsgmls g3data.sgml | sgmlspl /usr/share/sgml/docbook/utils-0.6.14/helpers/docbook2man-spec.pl -- gzip g3data.1 -+ mv *.1 g3data.1 - - clean: -- rm -f *.o g3data g3data.1.gz *~ manpage.* -+ rm -f *.o g3data g3data.1 *~ manpage.* - - install: - install g3data $(bindir) -- install g3data.1.gz $(mandir)/man1 -+ install g3data.1 $(mandir)/man1 - - uninstall: - rm $(bindir)/g3data |