diff options
author | 2014-12-31 15:10:26 +0000 | |
---|---|---|
committer | 2014-12-31 15:10:26 +0000 | |
commit | e7ce496485362b836f518dae79e17bb24286bee5 (patch) | |
tree | 5bbbb661b266b7b66374cac86cf80b6ee30a5082 /dev-util/flawfinder/flawfinder-1.31.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-e7ce496485362b836f518dae79e17bb24286bee5.tar.gz gentoo-2-e7ce496485362b836f518dae79e17bb24286bee5.tar.bz2 gentoo-2-e7ce496485362b836f518dae79e17bb24286bee5.zip |
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'dev-util/flawfinder/flawfinder-1.31.ebuild')
-rw-r--r-- | dev-util/flawfinder/flawfinder-1.31.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-util/flawfinder/flawfinder-1.31.ebuild b/dev-util/flawfinder/flawfinder-1.31.ebuild new file mode 100644 index 000000000000..1444060ccc02 --- /dev/null +++ b/dev-util/flawfinder/flawfinder-1.31.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/flawfinder/flawfinder-1.31.ebuild,v 1.1 2014/12/31 15:10:26 kensington Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +inherit eutils python-single-r1 + +DESCRIPTION="Examines C/C++ source code for security flaws" +HOMEPAGE="http://www.dwheeler.com/flawfinder/" +SRC_URI="http://www.dwheeler.com/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND}" + +src_install() { + dobin ${PN} + doman ${PN}.1 + dodoc announcement ChangeLog README announcement + dodoc flawfinder.pdf + python_fix_shebang "${ED}"usr/bin/flawfinder +} |