Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/gspiceui/files/
Date: Wed, 09 Dec 2015 18:01:52
Message-Id: 1449683614.082252d79db86519b17d2ecfa0d91b931456dcd7.calchan@gentoo
1 commit: 082252d79db86519b17d2ecfa0d91b931456dcd7
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 9 17:53:34 2015 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 9 17:53:34 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=082252d7
7
8 sci-electronics/gspiceui: delete unneeded patch
9
10 Package-Manager: portage-2.2.26
11
12 .../gspiceui/files/gspiceui-1.0.0-flags.patch | 28 ----------------------
13 1 file changed, 28 deletions(-)
14
15 diff --git a/sci-electronics/gspiceui/files/gspiceui-1.0.0-flags.patch b/sci-electronics/gspiceui/files/gspiceui-1.0.0-flags.patch
16 deleted file mode 100644
17 index 17cc77d..0000000
18 --- a/sci-electronics/gspiceui/files/gspiceui-1.0.0-flags.patch
19 +++ /dev/null
20 @@ -1,28 +0,0 @@
21 -# drop -Ofast option understood only from gcc-4.6 on
22 -# and make it respect LDFLAGS and CXXFLAGS
23 ---- src/Makefile.old 2012-02-11 13:29:27.000000000 +0100
24 -+++ src/Makefile 2012-02-11 13:31:13.000000000 +0100
25 -@@ -59,13 +59,7 @@
26 - INSTALLDIR = /usr/local/bin
27 -
28 - # Compiler options
29 --ifeq ($(GSPICEUI_DBG),0)
30 -- # Options for release (not using -Wall since it's GCC specific)
31 -- CXXFLAGS := -Ofast -pipe $(shell $(WXCFG) --cxxflags)
32 --else
33 -- # Options for development
34 -- CXXFLAGS := -Wall -g -pipe $(shell $(WXCFG) --cxxflags)
35 --endif
36 -+ CXXFLAGS += $(shell $(WXCFG) --cxxflags)
37 -
38 - # Includes
39 - INCLUDES = -I/usr/include -I/usr/X11R6/include -I.
40 -@@ -106,7 +100,7 @@
41 - # -o specify the output file name
42 -
43 - $(BINDIR)/$(PROG) : $(OBJS)
44 -- $(CC) -pipe -o $(BINDIR)/$(PROG) obj/*.o $(LIBS)
45 -+ $(CC) -pipe -o $(BINDIR)/$(PROG) obj/*.o $(LDFLAGS) $(LIBS)
46 - ifeq ($(ROOT)/GSpiceUI.app,$(wildcard $(ROOT)/GSpiceUI.app))
47 - cp $(BINDIR)/$(PROG) $(ROOT)/GSpiceUI.app/Contents/MacOS/gspiceui
48 - endif