Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/openvas-plugins/files: openvas-plugins-1.0.4-respect-ldflags.diff
Date: Sun, 02 Nov 2008 06:48:27
Message-Id: E1KwWl7-0007sY-1N@stork.gentoo.org
1 hanno 08/11/02 06:48:25
2
3 Added: openvas-plugins-1.0.4-respect-ldflags.diff
4 Log:
5 openvas-plugins bump
6 (Portage version: 2.2_rc13/cvs/Linux 2.6.28-rc2 x86_64)
7
8 Revision Changes Path
9 1.1 net-analyzer/openvas-plugins/files/openvas-plugins-1.0.4-respect-ldflags.diff
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/openvas-plugins/files/openvas-plugins-1.0.4-respect-ldflags.diff?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/openvas-plugins/files/openvas-plugins-1.0.4-respect-ldflags.diff?rev=1.1&content-type=text/plain
13
14 Index: openvas-plugins-1.0.4-respect-ldflags.diff
15 ===================================================================
16 diff -Naur openvas-plugins-1.0.3/plugins/3com_hub/Makefile openvas-plugins-1.0.3-1/plugins/3com_hub/Makefile
17 --- openvas-plugins-1.0.3/plugins/3com_hub/Makefile 2008-05-15 09:38:03.000000000 +0200
18 +++ openvas-plugins-1.0.3-1/plugins/3com_hub/Makefile 2008-09-17 20:37:30.000000000 +0200
19 @@ -6,7 +6,7 @@
20
21 $(PLUGNAME).nes : $(PLUGNAME).c
22 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -I/usr/local/include `libnet-config --defines --cflags` -c $(PLUGNAME).c
23 - $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo `libnet-config --defines --libs` -L/usr/local/lib $(LIBS) \
24 + $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo `libnet-config --defines --libs` -L/usr/local/lib $(LIBS) \
25 -rpath $(rootdir)/bin/plugins
26 ../install_plug $(PLUGNAME) $(rootdir)
27 clean :
28 diff -Naur openvas-plugins-1.0.3/plugins/find_service/Makefile openvas-plugins-1.0.3-1/plugins/find_service/Makefile
29 --- openvas-plugins-1.0.3/plugins/find_service/Makefile 2008-05-15 09:38:04.000000000 +0200
30 +++ openvas-plugins-1.0.3-1/plugins/find_service/Makefile 2008-09-17 20:37:29.000000000 +0200
31 @@ -5,7 +5,7 @@
32 all : $(PLUGNAME).nes
33 $(PLUGNAME).nes : $(PLUGNAME).c
34 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
35 - $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
36 + $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
37 -rpath $(rootdir)/bin/plugins
38 ../install_plug $(PLUGNAME) $(rootdir)
39 clean :
40 diff -Naur openvas-plugins-1.0.3/plugins/ftp_write_dirs/Makefile openvas-plugins-1.0.3-1/plugins/ftp_write_dirs/Makefile
41 --- openvas-plugins-1.0.3/plugins/ftp_write_dirs/Makefile 2008-05-15 09:38:03.000000000 +0200
42 +++ openvas-plugins-1.0.3-1/plugins/ftp_write_dirs/Makefile 2008-09-17 20:37:29.000000000 +0200
43 @@ -5,7 +5,7 @@
44 all : $(PLUGNAME).nes
45 $(PLUGNAME).nes : $(PLUGNAME).c
46 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
47 - $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
48 + $(LIBTOOL) --mode=link --tag CC $(CC) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
49 -rpath $(rootdir)/bin/plugins
50 ../install_plug $(PLUGNAME) $(rootdir)
51 clean :
52 diff -Naur openvas-plugins-1.0.3/plugins/linux_tftp/Makefile openvas-plugins-1.0.3-1/plugins/linux_tftp/Makefile
53 --- openvas-plugins-1.0.3/plugins/linux_tftp/Makefile 2008-05-15 09:38:03.000000000 +0200
54 +++ openvas-plugins-1.0.3-1/plugins/linux_tftp/Makefile 2008-09-17 20:37:28.000000000 +0200
55 @@ -5,7 +5,7 @@
56 all : $(PLUGNAME).nes
57 $(PLUGNAME).nes : $(PLUGNAME).c
58 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
59 - $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
60 + $(LIBTOOL) --mode=link --tag CC $(CC) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
61 -rpath $(rootdir)/bin/plugins
62 ../install_plug $(PLUGNAME) $(rootdir)
63 clean :
64 diff -Naur openvas-plugins-1.0.3/plugins/nmap_wrapper/Makefile openvas-plugins-1.0.3-1/plugins/nmap_wrapper/Makefile
65 --- openvas-plugins-1.0.3/plugins/nmap_wrapper/Makefile 2008-05-15 09:38:03.000000000 +0200
66 +++ openvas-plugins-1.0.3-1/plugins/nmap_wrapper/Makefile 2008-09-17 20:37:27.000000000 +0200
67 @@ -5,7 +5,7 @@
68 all : $(PLUGNAME).nes
69 $(PLUGNAME).nes : $(PLUGNAME).c
70 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
71 - $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) $(LIBUTIL) \
72 + $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) $(LIBUTIL) \
73 -rpath $(rootdir)/bin/plugins
74 ../install_plug $(PLUGNAME) $(rootdir)
75 clean :
76 diff -Naur openvas-plugins-1.0.3/plugins/objectserver/Makefile openvas-plugins-1.0.3-1/plugins/objectserver/Makefile
77 --- openvas-plugins-1.0.3/plugins/objectserver/Makefile 2008-05-15 09:38:03.000000000 +0200
78 +++ openvas-plugins-1.0.3-1/plugins/objectserver/Makefile 2008-09-17 20:37:27.000000000 +0200
79 @@ -5,7 +5,7 @@
80 all : $(PLUGNAME).nes
81 $(PLUGNAME).nes : $(PLUGNAME).c
82 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
83 - $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
84 + $(LIBTOOL) --mode=link --tag CC $(CC) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
85 -rpath $(rootdir)/bin/plugins
86 ../install_plug $(PLUGNAME) $(rootdir)
87 clean :
88 diff -Naur openvas-plugins-1.0.3/plugins/openvas_tcp_scanner/Makefile openvas-plugins-1.0.3-1/plugins/openvas_tcp_scanner/Makefile
89 --- openvas-plugins-1.0.3/plugins/openvas_tcp_scanner/Makefile 2008-05-15 09:38:03.000000000 +0200
90 +++ openvas-plugins-1.0.3-1/plugins/openvas_tcp_scanner/Makefile 2008-09-17 20:37:25.000000000 +0200
91 @@ -8,7 +8,7 @@
92 all : $(PLUGNAME).nes
93 $(PLUGNAME).nes : $(PLUGNAME).c
94 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
95 - $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) -lm $(LIBUTIL) \
96 + $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) -lm $(LIBUTIL) \
97 -rpath $(rootdir)/bin/plugins
98 ../install_plug $(PLUGNAME) $(rootdir)
99 clean :
100 diff -Naur openvas-plugins-1.0.3/plugins/smad/Makefile openvas-plugins-1.0.3-1/plugins/smad/Makefile
101 --- openvas-plugins-1.0.3/plugins/smad/Makefile 2008-05-15 09:38:03.000000000 +0200
102 +++ openvas-plugins-1.0.3-1/plugins/smad/Makefile 2008-09-17 20:43:07.000000000 +0200
103 @@ -5,7 +5,7 @@
104 all : $(PLUGNAME).nes
105 $(PLUGNAME).nes : $(PLUGNAME).c
106 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
107 - $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
108 + $(LIBTOOL) --mode=link --tag CC $(CC) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
109 -rpath $(rootdir)/bin/plugins
110 ../install_plug $(PLUGNAME) $(rootdir)
111 clean :
112 diff -Naur openvas-plugins-1.0.3/plugins/ssl_ciphers/Makefile openvas-plugins-1.0.3-1/plugins/ssl_ciphers/Makefile
113 --- openvas-plugins-1.0.3/plugins/ssl_ciphers/Makefile 2008-05-15 09:38:04.000000000 +0200
114 +++ openvas-plugins-1.0.3-1/plugins/ssl_ciphers/Makefile 2008-09-17 20:32:07.000000000 +0200
115 @@ -5,7 +5,7 @@
116 all : $(PLUGNAME).nes
117 $(PLUGNAME).nes : $(PLUGNAME).c
118 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
119 - $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
120 + $(LIBTOOL) --mode=link --tag CC $(CC) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
121 -rpath $(rootdir)/bin/plugins
122 ../install_plug $(PLUGNAME) $(rootdir)
123 clean :
124 diff -Naur openvas-plugins-1.0.3/plugins/synscan/Makefile openvas-plugins-1.0.3-1/plugins/synscan/Makefile
125 --- openvas-plugins-1.0.3/plugins/synscan/Makefile 2008-05-15 09:38:04.000000000 +0200
126 +++ openvas-plugins-1.0.3-1/plugins/synscan/Makefile 2008-09-17 20:42:56.000000000 +0200
127 @@ -5,7 +5,7 @@
128 all : $(PLUGNAME).nes
129 $(PLUGNAME).nes : $(PLUGNAME).c
130 $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
131 - $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
132 + $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) $(LDFLAGS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
133 -rpath $(rootdir)/bin/plugins
134 ../install_plug $(PLUGNAME) $(rootdir)
135 clean :