Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/snort: ChangeLog snort-2.9.1.ebuild
Date: Thu, 29 Sep 2011 06:05:06
Message-Id: 20110929060456.20C2420036@flycatcher.gentoo.org
1 pva 11/09/29 06:04:55
2
3 Modified: ChangeLog snort-2.9.1.ebuild
4 Log:
5 Fix inability to remove .la files, bug 384443 thank Juergen Rose for report and Jason Wallace for fix.
6
7 (Portage version: 2.1.10.16/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.187 net-analyzer/snort/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/snort/ChangeLog?rev=1.187&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/snort/ChangeLog?rev=1.187&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/snort/ChangeLog?r1=1.186&r2=1.187
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/snort/ChangeLog,v
19 retrieving revision 1.186
20 retrieving revision 1.187
21 diff -u -r1.186 -r1.187
22 --- ChangeLog 22 Sep 2011 17:39:51 -0000 1.186
23 +++ ChangeLog 29 Sep 2011 06:04:55 -0000 1.187
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-analyzer/snort
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/ChangeLog,v 1.186 2011/09/22 17:39:51 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/ChangeLog,v 1.187 2011/09/29 06:04:55 pva Exp $
29 +
30 + 29 Sep 2011; Peter Volkov <pva@g.o> snort-2.9.1.ebuild:
31 + Fix inability to remove .la files, bug 384443 thank Juergen Rose for report
32 + and Jason Wallace for fix.
33
34 *snort-2.9.1 (22 Sep 2011)
35
36
37
38
39 1.3 net-analyzer/snort/snort-2.9.1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/snort/snort-2.9.1.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/snort/snort-2.9.1.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/snort/snort-2.9.1.ebuild?r1=1.2&r2=1.3
44
45 Index: snort-2.9.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/snort/snort-2.9.1.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- snort-2.9.1.ebuild 23 Sep 2011 15:04:08 -0000 1.2
52 +++ snort-2.9.1.ebuild 29 Sep 2011 06:04:55 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/snort-2.9.1.ebuild,v 1.2 2011/09/23 15:04:08 mr_bones_ Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/snort-2.9.1.ebuild,v 1.3 2011/09/29 06:04:55 pva Exp $
58
59 EAPI="2"
60 inherit eutils autotools multilib
61 @@ -168,8 +168,8 @@
62 rm "${D}"usr/share/doc/"${PF}"/Makefile* || die "Failed to remove doc make files"
63
64 #Remove unneeded .la files (Bug #382863)
65 - rm "${D}"usr/lib64/snort_dynamicengine/libsf_engine.la || die
66 - rm "${D}"usr/lib64/snort_dynamicpreprocessor/libsf_*_preproc.la || die "Failed to remove libsf_?_preproc.la"
67 + rm "${D}"usr/$(get_libdir)/snort_dynamicengine/libsf_engine.la || die
68 + rm "${D}"usr/$(get_libdir)/snort_dynamicpreprocessor/libsf_*_preproc.la || die "Failed to remove libsf_?_preproc.la"
69
70 # Set the correct lib path for dynamicengine, dynamicpreprocessor, and dynamicdetection
71 sed -i -e 's|/usr/local/lib|/usr/'$(get_libdir)'|g' \