diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2013-12-28 01:41:03 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2013-12-28 01:41:03 +0000 |
commit | 8b7cd446ffcb078c9cfb6f2a5d7f46ad0b195e88 (patch) | |
tree | d208b1eda818d3754e31126acd0f3e428cac57ba /dev-util/rats | |
parent | Backport libgcj patch for glibc-2.15 a couple more versions. (diff) | |
download | gentoo-2-8b7cd446ffcb078c9cfb6f2a5d7f46ad0b195e88.tar.gz gentoo-2-8b7cd446ffcb078c9cfb6f2a5d7f46ad0b195e88.tar.bz2 gentoo-2-8b7cd446ffcb078c9cfb6f2a5d7f46ad0b195e88.zip |
Bug #411115: bump.
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-util/rats')
-rw-r--r-- | dev-util/rats/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/rats/rats-2.3.ebuild | 38 |
2 files changed, 45 insertions, 3 deletions
diff --git a/dev-util/rats/ChangeLog b/dev-util/rats/ChangeLog index d7207122d82e..6e241996fb21 100644 --- a/dev-util/rats/ChangeLog +++ b/dev-util/rats/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/rats -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/rats/ChangeLog,v 1.21 2011/04/10 03:10:17 abcd Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/rats/ChangeLog,v 1.22 2013/12/28 01:41:03 robbat2 Exp $ + +*rats-2.3 (28 Dec 2013) + + 28 Dec 2013; Robin H. Johnson <robbat2@gentoo.org> +rats-2.3.ebuild: + Bug #411115: bump. 10 Apr 2011; Jonathan Callen <abcd@gentoo.org> rats-2.1-r2.ebuild: Add prefix support, bump EAPI to 3, add prefix keywords @@ -63,4 +68,3 @@ 05 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> metadata.xml, rats-2.1.ebuild: initial commit, ebuild partially by Paul Belt <gaarde@yahoo.com>. - diff --git a/dev-util/rats/rats-2.3.ebuild b/dev-util/rats/rats-2.3.ebuild new file mode 100644 index 000000000000..bbc8ea074322 --- /dev/null +++ b/dev-util/rats/rats-2.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/rats/rats-2.3.ebuild,v 1.1 2013/12/28 01:41:03 robbat2 Exp $ + +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://rough-auditing-tool-for-security.googlecode.com/files/${P}.tar.gz" + +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." +} |