summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Arnold <nerdboy@gentoo.org>2008-05-12 06:03:36 +0000
committerSteve Arnold <nerdboy@gentoo.org>2008-05-12 06:03:36 +0000
commit7db14f3f06bc7fb447d91a12a268af4d9f10dc91 (patch)
treea9483f425c30eadb6f66849c5db9eb9c27a54639 /dev-util/astyle/files
parentswig is not a runtime dependency, fixes #221479 (diff)
downloadgentoo-2-7db14f3f06bc7fb447d91a12a268af4d9f10dc91.tar.gz
gentoo-2-7db14f3f06bc7fb447d91a12a268af4d9f10dc91.tar.bz2
gentoo-2-7db14f3f06bc7fb447d91a12a268af4d9f10dc91.zip
Updated for bug #217262 and added some basic java support and a soname
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'dev-util/astyle/files')
-rw-r--r--dev-util/astyle/files/astyle-1.22-strip.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-util/astyle/files/astyle-1.22-strip.patch b/dev-util/astyle/files/astyle-1.22-strip.patch
new file mode 100644
index 000000000000..3015ec12be08
--- /dev/null
+++ b/dev-util/astyle/files/astyle-1.22-strip.patch
@@ -0,0 +1,29 @@
+--- astyle.orig/buildgcc/Makefile 2008-04-11 11:25:13.000000000 +0200
++++ astyle/buildgcc/Makefile 2008-04-11 11:25:52.000000000 +0200
+@@ -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 -s -o $(bindir)/$@ $^
++ $(CXX) -shared -o $(bindir)/$@ $^
+ @ echo
+
+ shareddebug: libastyled.so
+@@ -140,7 +140,7 @@
+ java: libastylej.so
+ libastylej.so: $(OBJsj)
+ @ mkdir -p $(bindir)
+- $(CXX) -shared -s -o $(bindir)/$@ $^
++ $(CXX) -shared -o $(bindir)/$@ $^
+ @ echo
+
+ javadebug: libastylejd.so