Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/g3data/files/
Date: Sun, 29 Jan 2017 20:11:12
Message-Id: 1485720580.5fa7251590c72c21fbe99d916f24328feda3266e.soap@gentoo
1 commit: 5fa7251590c72c21fbe99d916f24328feda3266e
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jan 29 09:19:29 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 20:09:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fa72515
7
8 sci-visualization/g3data: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/3709
11
12 .../g3data/files/g3data-1.5.3-makefile.patch | 44 ----------------------
13 1 file changed, 44 deletions(-)
14
15 diff --git a/sci-visualization/g3data/files/g3data-1.5.3-makefile.patch b/sci-visualization/g3data/files/g3data-1.5.3-makefile.patch
16 deleted file mode 100644
17 index 4f39344..00000000
18 --- a/sci-visualization/g3data/files/g3data-1.5.3-makefile.patch
19 +++ /dev/null
20 @@ -1,44 +0,0 @@
21 ---- Makefile.orig 2008-12-14 08:20:17.000000000 +0000
22 -+++ Makefile 2009-02-26 19:26:26.052491697 +0000
23 -@@ -1,15 +1,13 @@
24 --CC=gcc
25 --CFLAGS=-Wall `pkg-config --cflags gtk+-2.0`
26 -+MYCFLAGS=-Wall `pkg-config --cflags gtk+-2.0`
27 - LIBS=`pkg-config --libs gtk+-2.0`
28 - bindir ?= /usr/bin
29 - mandir ?= /usr/share/man
30 -
31 - .c.o:
32 -- $(CC) -c $(CFLAGS) $(CPPFLAGS) $<
33 -+ $(CC) -c $(CFLAGS) $(CPPFLAGS) $(MYCFLAGS) $<
34 -
35 --g3data: main.o sort.o points.o drawing.o g3data.1.gz
36 -- $(CC) $(CFLAGS) -o g3data main.o sort.o points.o drawing.o $(LIBS)
37 -- strip g3data
38 -+g3data: main.o sort.o points.o drawing.o
39 -+ $(CC) $(LDFLAGS) -o g3data main.o sort.o points.o drawing.o $(LIBS)
40 -
41 - main.o: main.c main.h strings.h vardefs.h
42 -
43 -@@ -19,17 +17,17 @@
44 -
45 - drawing.o: drawing.c main.h
46 -
47 --g3data.1.gz: g3data.sgml
48 -+g3data.1: g3data.sgml
49 - rm -f *.1
50 - onsgmls g3data.sgml | sgmlspl /usr/share/sgml/docbook/utils-0.6.14/helpers/docbook2man-spec.pl
51 -- gzip g3data.1
52 -+ mv *.1 g3data.1
53 -
54 - clean:
55 -- rm -f *.o g3data g3data.1.gz *~ manpage.*
56 -+ rm -f *.o g3data g3data.1 *~ manpage.*
57 -
58 - install:
59 - install g3data $(bindir)
60 -- install g3data.1.gz $(mandir)/man1
61 -+ install g3data.1 $(mandir)/man1
62 -
63 - uninstall:
64 - rm $(bindir)/g3data