Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/unhide: unhide-20130526.ebuild ChangeLog unhide-20120905.ebuild unhide-20110113.ebuild
Date: Mon, 27 May 2013 21:17:27
Message-Id: 20130527211723.69ECD2171D@flycatcher.gentoo.org
1 blueness 13/05/27 21:17:23
2
3 Modified: ChangeLog
4 Added: unhide-20130526.ebuild
5 Removed: unhide-20120905.ebuild unhide-20110113.ebuild
6 Log:
7 Version bump and remove older ~arch
8
9 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
10
11 Revision Changes Path
12 1.4 app-forensics/unhide/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/unhide/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/unhide/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/unhide/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-forensics/unhide/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 29 Dec 2012 14:43:31 -0000 1.3
25 +++ ChangeLog 27 May 2013 21:17:23 -0000 1.4
26 @@ -1,4 +1,10 @@
27
28 +*unhide-20130526 (27 May 2013)
29 +
30 + 27 May 2013; Anthony G. Basile <blueness@g.o> +unhide-20130526.ebuild,
31 + -unhide-20110113.ebuild, -unhide-20120905.ebuild:
32 + Version bump and remove older ~arch
33 +
34 *unhide-20121229 (29 Dec 2012)
35
36 29 Dec 2012; Anthony G. Basile <blueness@g.o> +unhide-20121229.ebuild:
37
38
39
40 1.1 app-forensics/unhide/unhide-20130526.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/unhide/unhide-20130526.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/unhide/unhide-20130526.ebuild?rev=1.1&content-type=text/plain
44
45 Index: unhide-20130526.ebuild
46 ===================================================================
47 # Copyright 1999-2013 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-forensics/unhide/unhide-20130526.ebuild,v 1.1 2013/05/27 21:17:23 blueness Exp $
50
51 EAPI="5"
52
53 inherit toolchain-funcs
54
55 DESCRIPTION="A forensic tool to find hidden processes and TCP/UDP ports by rootkits/LKMs or other technique."
56 HOMEPAGE="http://www.unhide-forensics.info"
57 SRC_URI="mirror://sourceforge/${PN}/files/${P}.tgz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 DEPEND=""
65 RDEPEND="${DEPEND}"
66
67 src_compile() {
68 $(tc-getCC) ${CFLAGS} ${LDFLAGS} --static -pthread \
69 unhide-linux*.c unhide-output.c -o unhide
70 $(tc-getCC) ${CFLAGS} ${LDFLAGS} --static \
71 unhide-tcp.c unhide-tcp-fast.c unhide-output.c -o unhide-tcp
72 }
73
74 src_install() {
75 dobin ${PN}
76 dobin ${PN}-tcp
77 dodoc changelog README.txt TODO
78 dodoc changelog README.txt LEEME.txt LISEZ-MOI.TXT NEWS TODO
79 doman man/unhide.8 man/unhide-tcp.8
80 has "fr" ${LINGUAS} && newman man/fr/unhide.8 unhide.fr.8
81 has "es" ${LINGUAS} && newman man/es/unhide.8 unhide.es.8
82 }