* [gentoo-commits] gentoo-x86 commit in app-office/texmacs/files: texmacs-ldflags.patch texmacs-strip.patch texmacs-1.0.7.6-strip.patch texmacs-1.0.7.5-strip.patch texmacs-1.0.7.2-strip.patch
@ 2010-10-31 5:15 Andrey Grozin (grozin)
0 siblings, 0 replies; only message in thread
From: Andrey Grozin (grozin) @ 2010-10-31 5:15 UTC (permalink / raw
To: gentoo-commits
grozin 10/10/31 05:15:44
Added: texmacs-ldflags.patch texmacs-strip.patch
Removed: texmacs-1.0.7.6-strip.patch
texmacs-1.0.7.5-strip.patch
texmacs-1.0.7.2-strip.patch
Log:
Version bump, bug #338459 fixed, identical patch files combined
(Portage version: 2.2.0_alpha2/cvs/Linux i686)
Revision Changes Path
1.1 app-office/texmacs/files/texmacs-ldflags.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/files/texmacs-ldflags.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/files/texmacs-ldflags.patch?rev=1.1&content-type=text/plain
Index: texmacs-ldflags.patch
===================================================================
diff -r -U1 TeXmacs-1.0.7.7-src.orig/plugins/axiom/Makefile TeXmacs-1.0.7.7-src/plugins/axiom/Makefile
--- TeXmacs-1.0.7.7-src.orig/plugins/axiom/Makefile 2010-10-23 02:38:00.000000000 +0700
+++ TeXmacs-1.0.7.7-src/plugins/axiom/Makefile 2010-10-31 18:26:17.000000000 +0600
@@ -16,3 +16,3 @@
bin/tm_axiom: src/tm_axiom.c
- $(CC) $(CPPFLAGS) $(CFLAGS) src/tm_axiom.c -o bin/tm_axiom
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/tm_axiom.c -o bin/tm_axiom
diff -r -U1 TeXmacs-1.0.7.7-src.orig/plugins/graphviz/Makefile TeXmacs-1.0.7.7-src/plugins/graphviz/Makefile
--- TeXmacs-1.0.7.7-src.orig/plugins/graphviz/Makefile 2010-10-23 02:38:00.000000000 +0700
+++ TeXmacs-1.0.7.7-src/plugins/graphviz/Makefile 2010-10-31 18:29:34.000000000 +0600
@@ -16,3 +16,3 @@
bin/tm_graphviz: src/tm_graphviz.c
- $(CC) $(CPPFLAGS) $(CFLAGS) src/tm_graphviz.c -o bin/tm_graphviz
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/tm_graphviz.c -o bin/tm_graphviz
diff -r -U1 TeXmacs-1.0.7.7-src.orig/plugins/maple/Makefile TeXmacs-1.0.7.7-src/plugins/maple/Makefile
--- TeXmacs-1.0.7.7-src.orig/plugins/maple/Makefile 2010-10-23 02:38:00.000000000 +0700
+++ TeXmacs-1.0.7.7-src/plugins/maple/Makefile 2010-10-31 18:30:26.000000000 +0600
@@ -17,3 +17,3 @@
bin/tm_maple_5: src/tm_maple_5.cpp
- $(CXX) $(CPPFLAGS) $(CXXFLAGS) src/tm_maple_5.cpp -o bin/tm_maple_5
+ $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) src/tm_maple_5.cpp -o bin/tm_maple_5
diff -r -U1 TeXmacs-1.0.7.7-src.orig/plugins/mathematica/Makefile TeXmacs-1.0.7.7-src/plugins/mathematica/Makefile
--- TeXmacs-1.0.7.7-src.orig/plugins/mathematica/Makefile 2010-10-23 02:38:00.000000000 +0700
+++ TeXmacs-1.0.7.7-src/plugins/mathematica/Makefile 2010-10-31 18:31:09.000000000 +0600
@@ -14,3 +14,3 @@
bin/realpath: src/realpath.c
- $(CC) $(CPPFLAGS) $(CFLAGS) src/realpath.c -o bin/realpath
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/realpath.c -o bin/realpath
diff -r -U1 TeXmacs-1.0.7.7-src.orig/plugins/maxima/Makefile TeXmacs-1.0.7.7-src/plugins/maxima/Makefile
--- TeXmacs-1.0.7.7-src.orig/plugins/maxima/Makefile 2010-10-23 02:38:00.000000000 +0700
+++ TeXmacs-1.0.7.7-src/plugins/maxima/Makefile 2010-10-31 18:32:01.000000000 +0600
@@ -16,3 +16,3 @@
bin/maxima_filter: src/maxima_filter.c
- $(CC) $(CPPFLAGS) $(CFLAGS) src/maxima_filter.c -o bin/maxima_filter
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) src/maxima_filter.c -o bin/maxima_filter
diff -r -U1 TeXmacs-1.0.7.7-src.orig/plugins/r/Makefile TeXmacs-1.0.7.7-src/plugins/r/Makefile
--- TeXmacs-1.0.7.7-src.orig/plugins/r/Makefile 2010-10-23 02:38:00.000000000 +0700
+++ TeXmacs-1.0.7.7-src/plugins/r/Makefile 2010-10-31 18:32:47.000000000 +0600
@@ -16,3 +16,3 @@
bin/tm_r: src/tm_r.c
- $(CC) $(CPPFLAGS) $(CFLAGS) -I../../src/System src/tm_r.c -o bin/tm_r -lutil
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -I../../src/System src/tm_r.c -o bin/tm_r -lutil
diff -r -U1 TeXmacs-1.0.7.7-src.orig/plugins/shell/Makefile TeXmacs-1.0.7.7-src/plugins/shell/Makefile
--- TeXmacs-1.0.7.7-src.orig/plugins/shell/Makefile 2010-10-23 02:38:00.000000000 +0700
+++ TeXmacs-1.0.7.7-src/plugins/shell/Makefile 2010-10-31 18:34:16.000000000 +0600
@@ -16,3 +16,3 @@
bin/tm_shell: src/tm_shell.cpp
- $(CXX) $(CPPFLAGS) $(CXXFLAGS) -I../../src/System -lutil src/tm_shell.cpp -o bin/tm_shell
+ $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -I../../src/System -lutil src/tm_shell.cpp -o bin/tm_shell
1.1 app-office/texmacs/files/texmacs-strip.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/files/texmacs-strip.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/texmacs/files/texmacs-strip.patch?rev=1.1&content-type=text/plain
Index: texmacs-strip.patch
===================================================================
Index: TeXmacs-1.0.7.1-src/Makefile.in
===================================================================
--- TeXmacs-1.0.7.1-src.orig/Makefile.in
+++ TeXmacs-1.0.7.1-src/Makefile.in
@@ -130,9 +130,7 @@ INSTALL:
$(CP) $(tmdir)/bin/tm_gs $(DESTDIR)$(tmbin)/bin
$(CP) $(tmdir)/plugins/*/bin/* $(DESTDIR)$(tmbin)/bin
$(CP) $(tmdir)/plugins/*/lib/*.$(so) $(DESTDIR)$(tmbin)/lib 2>/dev/null || :
- $(STRIP) $(DESTDIR)$(tmbin)/bin/texmacs.bin
$(CP) $(tmdir)/lib/*.$(so) $(DESTDIR)$(tmbin)/lib 2>/dev/null || :
- $(STRIP) $(DESTDIR)$(tmbin)/lib/*.$(so) 2>/dev/null || :
$(CHMOD) 755 $(DESTDIR)$(tmbin)/bin/*
$(CHMOD) 755 $(DESTDIR)$(tmbin)/lib/*.$(so) 2>/dev/null || :
$(RM) $(DESTDIR)$(tmbin)/lib/*.a
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-10-31 5:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-31 5:15 [gentoo-commits] gentoo-x86 commit in app-office/texmacs/files: texmacs-ldflags.patch texmacs-strip.patch texmacs-1.0.7.6-strip.patch texmacs-1.0.7.5-strip.patch texmacs-1.0.7.2-strip.patch Andrey Grozin (grozin)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox