diff options
author | 2009-09-01 02:32:00 +0000 | |
---|---|---|
committer | 2009-09-01 02:32:00 +0000 | |
commit | 4128c09fca8528f1994c619a42f34229dd1b45b3 (patch) | |
tree | b051b7eea9ed5642a0efcfe8ce4302c0969e1512 /sci-visualization/fig2sxd/files | |
parent | Added missing dependency on qt-opengl (fixes bug #283181). (diff) | |
download | historical-4128c09fca8528f1994c619a42f34229dd1b45b3.tar.gz historical-4128c09fca8528f1994c619a42f34229dd1b45b3.tar.bz2 historical-4128c09fca8528f1994c619a42f34229dd1b45b3.zip |
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.
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'sci-visualization/fig2sxd/files')
-rw-r--r-- | sci-visualization/fig2sxd/files/fig2sxd-0.20-ldflags.patch | 12 | ||||
-rw-r--r-- | sci-visualization/fig2sxd/files/fig2sxd-0.20-phony-check.patch | 9 |
2 files changed, 21 insertions, 0 deletions
diff --git a/sci-visualization/fig2sxd/files/fig2sxd-0.20-ldflags.patch b/sci-visualization/fig2sxd/files/fig2sxd-0.20-ldflags.patch new file mode 100644 index 000000000000..a9bd521d3196 --- /dev/null +++ b/sci-visualization/fig2sxd/files/fig2sxd-0.20-ldflags.patch @@ -0,0 +1,12 @@ +diff -Naur fig2sxd-0.20/Makefile fig2sxd-0.20.new/Makefile +--- fig2sxd-0.20/Makefile 2008-05-16 18:47:34.000000000 -0400 ++++ fig2sxd-0.20.new/Makefile 2009-08-31 22:14:38.000000000 -0400 +@@ -51,7 +51,7 @@ + LIBS = -lz + + $(TARGET1): $(OBJECTS1) +- $(CXX) -o $@ $^ $(LIBS) ++ $(CXX) $(LDFLAGS) $^ $(LIBS) -o $@ + + $(OBJECTS1): %.o: $(SRCDIR)%.cpp $(DEPEND)%.dep + $(CXX) $(CXXFLAGS) -o $@ -c $< diff --git a/sci-visualization/fig2sxd/files/fig2sxd-0.20-phony-check.patch b/sci-visualization/fig2sxd/files/fig2sxd-0.20-phony-check.patch new file mode 100644 index 000000000000..d9e76b8c9780 --- /dev/null +++ b/sci-visualization/fig2sxd/files/fig2sxd-0.20-phony-check.patch @@ -0,0 +1,9 @@ +diff -Naur fig2sxd-0.20/Makefile fig2sxd-0.20.new/Makefile +--- fig2sxd-0.20/Makefile 2008-05-16 18:47:34.000000000 -0400 ++++ fig2sxd-0.20.new/Makefile 2009-08-31 22:22:07.000000000 -0400 +@@ -75,4 +75,4 @@ + tar czf `date +"../fig2sxd-%Y-%m-%d-%H-%M.tar.gz"` -C $(SRCDIR)../ \ + $(ARCHFILES) + +-.PHONY: all clean ++.PHONY: all clean check |