blob: 1c49b7c4df49764baa082b871f8792a130e20fd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=3
inherit eutils
DESCRIPTION="RATS - Rough Auditing Tool for Security"
HOMEPAGE="https://code.google.com/p/rough-auditing-tool-for-security/"
SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rough-auditing-tool-for-security/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
DEPEND="dev-libs/expat"
src_prepare() {
edos2unix $(find "${S}" -name '*.[chl]' -o -name '*.in' -o -name '*.am')
#epatch "${FILESDIR}"/${PN}-2.1-add-getopt-trailing-null.patch
#epatch "${FILESDIR}"/${PN}-2.1-fix-null-pointers.patch
}
src_configure() {
econf --datadir="${EPREFIX}/usr/share/${PN}/"
}
src_install () {
einstall SHAREDIR="${ED}/usr/share/${PN}" MANDIR="${ED}/usr/share/man"
dodoc README README.win32
}
pkg_postinst() {
ewarn "Please be careful when using this program with it's force language"
ewarn "option, '--language <LANG>' it may take huge amounts of memory when"
ewarn "it tries to treat binary files as some other type."
}
|