Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/fig2sxd/files: fig2sxd-0.20-ldflags.patch fig2sxd-0.20-phony-check.patch
Date: Mon, 31 Aug 2009 21:23:12
Message-Id: E1MiJA8-0006oN-KJ@stork.gentoo.org
1 markusle 09/09/01 02:32:00
2
3 Added: fig2sxd-0.20-ldflags.patch
4 fig2sxd-0.20-phony-check.patch
5 Log:
6 Version bump. Also added patches for respecting LDFLAGS and making sure check is a phony target since it is not intended as a test file. Added myself as a maintainer.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-visualization/fig2sxd/files/fig2sxd-0.20-ldflags.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/files/fig2sxd-0.20-ldflags.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/files/fig2sxd-0.20-ldflags.patch?rev=1.1&content-type=text/plain
14
15 Index: fig2sxd-0.20-ldflags.patch
16 ===================================================================
17 diff -Naur fig2sxd-0.20/Makefile fig2sxd-0.20.new/Makefile
18 --- fig2sxd-0.20/Makefile 2008-05-16 18:47:34.000000000 -0400
19 +++ fig2sxd-0.20.new/Makefile 2009-08-31 22:14:38.000000000 -0400
20 @@ -51,7 +51,7 @@
21 LIBS = -lz
22
23 $(TARGET1): $(OBJECTS1)
24 - $(CXX) -o $@ $^ $(LIBS)
25 + $(CXX) $(LDFLAGS) $^ $(LIBS) -o $@
26
27 $(OBJECTS1): %.o: $(SRCDIR)%.cpp $(DEPEND)%.dep
28 $(CXX) $(CXXFLAGS) -o $@ -c $<
29
30
31
32 1.1 sci-visualization/fig2sxd/files/fig2sxd-0.20-phony-check.patch
33
34 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/files/fig2sxd-0.20-phony-check.patch?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/files/fig2sxd-0.20-phony-check.patch?rev=1.1&content-type=text/plain
36
37 Index: fig2sxd-0.20-phony-check.patch
38 ===================================================================
39 diff -Naur fig2sxd-0.20/Makefile fig2sxd-0.20.new/Makefile
40 --- fig2sxd-0.20/Makefile 2008-05-16 18:47:34.000000000 -0400
41 +++ fig2sxd-0.20.new/Makefile 2009-08-31 22:22:07.000000000 -0400
42 @@ -75,4 +75,4 @@
43 tar czf `date +"../fig2sxd-%Y-%m-%d-%H-%M.tar.gz"` -C $(SRCDIR)../ \
44 $(ARCHFILES)
45
46 -.PHONY: all clean
47 +.PHONY: all clean check