summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2013-04-24 06:46:18 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2013-04-24 06:46:18 +0000
commit88cc88b9b8d2881801821ae783825813d912ef79 (patch)
tree97ceee7e459f46d67a96bc3115515a3ecabe95d1 /dev-util/astyle/files
parentVersion bump (diff)
downloadgentoo-2-88cc88b9b8d2881801821ae783825813d912ef79.tar.gz
gentoo-2-88cc88b9b8d2881801821ae783825813d912ef79.tar.bz2
gentoo-2-88cc88b9b8d2881801821ae783825813d912ef79.zip
Version bump wrt #466198 by David Hallas <david@cgp.dk>. Drop old
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
Diffstat (limited to 'dev-util/astyle/files')
-rw-r--r--dev-util/astyle/files/astyle-1.22-Makefile.patch63
1 files changed, 0 insertions, 63 deletions
diff --git a/dev-util/astyle/files/astyle-1.22-Makefile.patch b/dev-util/astyle/files/astyle-1.22-Makefile.patch
deleted file mode 100644
index 44779a28b0cf..000000000000
--- a/dev-util/astyle/files/astyle-1.22-Makefile.patch
+++ /dev/null
@@ -1,63 +0,0 @@
---- buildgcc/Makefile.orig 2008-10-14 20:31:23.645424162 -0700
-+++ buildgcc/Makefile 2008-10-14 20:36:36.484423984 -0700
-@@ -36,14 +36,14 @@
- ##################################################
-
- # define compile options for each build
--CFLAGS = -DNDEBUG -O3 $(CBASEFLAGS)
--CFLAGSd = -g $(CBASEFLAGS)
--CFLAGSs = -DNDEBUG -DASTYLE_LIB -O3 -fpic $(CBASEFLAGS)
--CFLAGSsd = -DASTYLE_LIB -g -fpic $(CBASEFLAGS)
--CFLAGSa = -DNDEBUG -DASTYLE_LIB -O3 $(CBASEFLAGS)
--CFLAGSad = -DASTYLE_LIB -g $(CBASEFLAGS)
--CFLAGSsj = -DNDEBUG -DASTYLE_JNI -O3 -fpic $(CBASEFLAGS) $(JAVAINCS)
--CFLAGSsjd = -DASTYLE_JNI -g -fpic $(CBASEFLAGS) $(JAVAINCS)
-+CFLAGSb = -DNDEBUG $(CFLAGS)
-+CFLAGSd = -g $(CFLAGS)
-+CFLAGSs = -DNDEBUG -DASTYLE_LIB -fPIC $(CFLAGS)
-+CFLAGSsd = -DASTYLE_LIB -g -fPIC $(CFLAGS)
-+CFLAGSa = -DNDEBUG -DASTYLE_LIB $(CFLAGS)
-+CFLAGSad = -DASTYLE_LIB -g $(CFLAGS)
-+CFLAGSsj = -DNDEBUG -DASTYLE_JNI -fPIC $(CFLAGS) $(JAVAINCS)
-+CFLAGSsjd = -DASTYLE_JNI -g -fPIC $(CFLAGS) $(JAVAINCS)
-
- # object files are built from the source list $(SRC)
- # a suffix is added for each build
-@@ -61,7 +61,7 @@
- # OBJ
- $(objdir)/%.o: %.cpp astyle.h
- @ mkdir -p $(objdir)
-- $(CXX) $(CFLAGS) -c -o $@ $<
-+ $(CXX) $(CFLAGSb) -c -o $@ $<
-
- # OBJd
- $(objdir)/%_d.o: %.cpp astyle.h
-@@ -104,7 +104,7 @@
- release: astyle
- astyle: $(OBJ)
- @ mkdir -p $(bindir)
-- $(CXX) -s -o $(bindir)/$@ $^
-+ $(CXX) -o $(bindir)/$@ $^
- @ echo
-
- debug: astyled
-@@ -116,7 +116,7 @@
- shared: libastyle.so
- libastyle.so: $(OBJs)
- @ mkdir -p $(bindir)
-- $(CXX) -shared -Wl,-soname,$@ -s -o $(bindir)/$@ $^
-+ $(CXX) -shared -Wl,-soname,$@ -o $(bindir)/$@ $^
- @ echo
-
- shareddebug: libastyled.so
---- buildgcc/Makefile.orig 2008-11-10 18:00:51.462464681 -0800
-+++ buildgcc/Makefile 2008-11-10 18:31:21.586465413 -0800
-@@ -140,7 +140,7 @@
- java: libastylej.so
- libastylej.so: $(OBJsj)
- @ mkdir -p $(bindir)
-- $(CXX) -shared -Wl,-soname,$@ -s -o $(bindir)/$@ $^
-+ $(CXX) -shared -Wl,-soname,$@ -o $(bindir)/$@ $^
- @ echo
-
- javadebug: libastylejd.so