Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/probe/files: 2.12.110413-as-needed.patch
Date: Fri, 06 May 2011 07:27:07
Message-Id: 20110506072657.B1E4E20057@flycatcher.gentoo.org
1 jlec 11/05/06 07:26:57
2
3 Added: 2.12.110413-as-needed.patch
4 Log:
5 Version Bump, notified by euscan
6
7 (Portage version: 2.2.0_alpha31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-chemistry/probe/files/2.12.110413-as-needed.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/probe/files/2.12.110413-as-needed.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/probe/files/2.12.110413-as-needed.patch?rev=1.1&content-type=text/plain
14
15 Index: 2.12.110413-as-needed.patch
16 ===================================================================
17 Makefile | 13 ++++++-------
18 1 files changed, 6 insertions(+), 7 deletions(-)
19
20 diff --git a/Makefile b/Makefile
21 index e6a740e..8f74d6a 100644
22 --- a/Makefile
23 +++ b/Makefile
24 @@ -1,14 +1,12 @@
25 -MACHINEFLAGS =
26 -CFLAGS = $(MACHINEFLAGS)
27 -LFLAGS = -lm $(MACHINEFLAGS)
28 +LIBS = -lm
29 OBJLIST = dots.o abin.o readPDBrecs.o geom3d.o utility.o select.o \
30 - parse.o atomprops.o stdconntable.o autobondrot.o
31 + parse.o atomprops.o stdconntable.o autobondrot.o hybrid_36_c.o
32
33 .c.o:
34 - cc -c $*.c $(CFLAGS)
35 + $(CC) $(CFLAGS) -c $*.c
36
37 probe: probe.o $(OBJLIST)
38 - cc -o $@ probe.o $(OBJLIST) $(LFLAGS)
39 + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ probe.o $(OBJLIST) $(LIBS)
40
41 clean:
42 @rm -f *.o *.ckp
43 @@ -30,9 +28,10 @@ parse.o: ./parse.h ./utility.h parse.c
44 probe.o: ./abin.h ./atomprops.h ./autobondrot.h ./dots.h ./geom3d.h \
45 ./parse.h ./probe.h ./readPDBrecs.h ./select.h \
46 ./stdconntable.h ./utility.h probe.c
47 -readPDBrecs.o: ./geom3d.h ./readPDBrecs.h ./utility.h readPDBrecs.c
48 +readPDBrecs.o: ./geom3d.h ./readPDBrecs.h ./utility.h ./hybrid_36_c.h readPDBrecs.c
49 select.o: ./abin.h ./atomprops.h ./geom3d.h ./parse.h ./select.h \
50 ./stdconntable.h ./utility.h select.c
51 stdconntable.o: ./stdconntable.h stdconntable.c
52 utility.o: utility.c
53 +hybrid_36_c.o: ./hybrid_36_c.h hybrid_36_c.c
54 # DO NOT DELETE THIS 2nd LINE -- make depend uses it