summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2015-12-09 10:53:34 -0700
committerDenis Dupeyron <calchan@gentoo.org>2015-12-09 10:53:34 -0700
commit082252d79db86519b17d2ecfa0d91b931456dcd7 (patch)
treec0525da8ba1635765b0676778650155d5ee58e72 /sci-electronics/gspiceui/files
parentsci-electronics/gspiceui: update HOMEPAGE (bug 565706) (diff)
downloadgentoo-082252d79db86519b17d2ecfa0d91b931456dcd7.tar.gz
gentoo-082252d79db86519b17d2ecfa0d91b931456dcd7.tar.bz2
gentoo-082252d79db86519b17d2ecfa0d91b931456dcd7.zip
sci-electronics/gspiceui: delete unneeded patch
Package-Manager: portage-2.2.26
Diffstat (limited to 'sci-electronics/gspiceui/files')
-rw-r--r--sci-electronics/gspiceui/files/gspiceui-1.0.0-flags.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/sci-electronics/gspiceui/files/gspiceui-1.0.0-flags.patch b/sci-electronics/gspiceui/files/gspiceui-1.0.0-flags.patch
deleted file mode 100644
index 17cc77d8f8b7..000000000000
--- a/sci-electronics/gspiceui/files/gspiceui-1.0.0-flags.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-# drop -Ofast option understood only from gcc-4.6 on
-# and make it respect LDFLAGS and CXXFLAGS
---- src/Makefile.old 2012-02-11 13:29:27.000000000 +0100
-+++ src/Makefile 2012-02-11 13:31:13.000000000 +0100
-@@ -59,13 +59,7 @@
- INSTALLDIR = /usr/local/bin
-
- # Compiler options
--ifeq ($(GSPICEUI_DBG),0)
-- # Options for release (not using -Wall since it's GCC specific)
-- CXXFLAGS := -Ofast -pipe $(shell $(WXCFG) --cxxflags)
--else
-- # Options for development
-- CXXFLAGS := -Wall -g -pipe $(shell $(WXCFG) --cxxflags)
--endif
-+ CXXFLAGS += $(shell $(WXCFG) --cxxflags)
-
- # Includes
- INCLUDES = -I/usr/include -I/usr/X11R6/include -I.
-@@ -106,7 +100,7 @@
- # -o specify the output file name
-
- $(BINDIR)/$(PROG) : $(OBJS)
-- $(CC) -pipe -o $(BINDIR)/$(PROG) obj/*.o $(LIBS)
-+ $(CC) -pipe -o $(BINDIR)/$(PROG) obj/*.o $(LDFLAGS) $(LIBS)
- ifeq ($(ROOT)/GSpiceUI.app,$(wildcard $(ROOT)/GSpiceUI.app))
- cp $(BINDIR)/$(PROG) $(ROOT)/GSpiceUI.app/Contents/MacOS/gspiceui
- endif