Gentoo Archives: gentoo-commits

From: "Mike Pagano (mpagano)" <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/lsat: ChangeLog lsat-0.9.7.1.ebuild
Date: Mon, 29 Dec 2008 20:37:16
Message-Id: E1LHOrS-0000nk-CH@stork.gentoo.org
1 mpagano 08/12/29 20:37:14
2
3 Modified: ChangeLog
4 Added: lsat-0.9.7.1.ebuild
5 Log:
6 Version bump and patch for bug #184488
7 (Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo i686)
8
9 Revision Changes Path
10 1.23 app-admin/lsat/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/lsat/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/lsat/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/lsat/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/lsat/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 21 Apr 2008 16:05:06 -0000 1.22
23 +++ ChangeLog 29 Dec 2008 20:37:14 -0000 1.23
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-admin/lsat
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-admin/lsat/ChangeLog,v 1.22 2008/04/21 16:05:06 phreak Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-admin/lsat/ChangeLog,v 1.23 2008/12/29 20:37:14 mpagano Exp $
29 +
30 +*lsat-0.9.7.1 (29 Dec 2008)
31 +
32 + 29 Dec 2008; Mike Pagano <mpagano@g.o>
33 + +files/lsat-0.9.7.1-gentoo.patch, +files/lsat-0.9.7.1-segfault-fix.patch,
34 + +lsat-0.9.7.1.ebuild:
35 + Version bump and patch for bug #184488
36
37 21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
38 Fix up metadata.xml. If there's no maintainer for the package, the metadata
39
40
41
42 1.1 app-admin/lsat/lsat-0.9.7.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/lsat/lsat-0.9.7.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/lsat/lsat-0.9.7.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lsat-0.9.7.1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-admin/lsat/lsat-0.9.7.1.ebuild,v 1.1 2008/12/29 20:37:14 mpagano Exp $
52
53
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="The Linux Security Auditing Tool"
57 HOMEPAGE="http://usat.sourceforge.net/"
58 SRC_URI="http://usat.sourceforge.net/code/${P}.tgz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="minimal"
64
65 DEPEND="dev-lang/perl" # pod2man
66 RDEPEND="!minimal? (
67 app-portage/portage-utils
68 net-analyzer/nmap
69 sys-apps/iproute2
70 sys-apps/which
71 sys-process/lsof
72 )"
73
74 src_unpack() {
75 unpack ${A}
76 cd "${S}"
77 epatch "${FILESDIR}"/${P}-gentoo.patch
78
79 # patch for segmentation fault see bug #184488
80 epatch "${FILESDIR}"/${P}-segfault-fix.patch
81 }
82
83 src_compile() {
84 tc-export CC
85 econf
86 emake CFLAGS="${CFLAGS}" all manpage || die "emake failed"
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install installman || die "emake install failed"
91 dodoc README* *.txt
92 dohtml modules.html changelog/changelog.html
93 }