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-libs/qrupdate/files: qrupdate-1.0.1-makefile.patch
Date: Fri, 11 Sep 2009 13:33:39
Message-Id: E1Mm6Fr-0003KI-1u@stork.gentoo.org
1 markusle 09/09/11 13:33:35
2
3 Added: qrupdate-1.0.1-makefile.patch
4 Log:
5 Initial import into portage tree (fixes bug #282203).
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sci-libs/qrupdate/files/qrupdate-1.0.1-makefile.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/files/qrupdate-1.0.1-makefile.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/files/qrupdate-1.0.1-makefile.patch?rev=1.1&content-type=text/plain
13
14 Index: qrupdate-1.0.1-makefile.patch
15 ===================================================================
16 diff -Naur qrupdate-1.0.1/Makefile qrupdate-1.0.1.new/Makefile
17 --- qrupdate-1.0.1/Makefile 2009-02-06 04:12:00.000000000 -0500
18 +++ qrupdate-1.0.1.new/Makefile 2009-09-10 09:55:32.000000000 -0400
19 @@ -34,7 +34,7 @@
20 lib:
21 make -C src/ lib
22 solib:
23 - make -C src/ solib
24 + +make -C src/ solib
25 test: lib
26 make -C test/
27
28 diff -Naur qrupdate-1.0.1/src/Makefile qrupdate-1.0.1.new/src/Makefile
29 --- qrupdate-1.0.1/src/Makefile 2009-02-06 04:12:50.000000000 -0500
30 +++ qrupdate-1.0.1.new/src/Makefile 2009-09-10 09:49:29.000000000 -0400
31 @@ -40,7 +40,7 @@
32 ar -cr $@ $(OBJS)
33
34 ../libqrupdate.so: $(OBJS)
35 - $(FC) $(FFLAGS) -shared -o $@ -Wl,-soname=libqrupdate.so.$(MAJOR) $(OBJS) \
36 + $(FC) $(FFLAGS) $(LDFLAGS) -shared -o $@ -Wl,-soname=libqrupdate.so.$(MAJOR) $(OBJS) \
37 $(BLAS) $(LAPACK)
38
39 $(OBJS): %.o: %.f