diff options
author | Charlie Shepherd <masterdriverz@gentoo.org> | 2007-10-25 16:02:19 +0000 |
---|---|---|
committer | Charlie Shepherd <masterdriverz@gentoo.org> | 2007-10-25 16:02:19 +0000 |
commit | 303aa8a0b1303b48fd6ac7dca22a894d81910925 (patch) | |
tree | ebb987020900353e81b721c12a41a71400833e72 /dev-util/splint/splint-3.1.2.ebuild | |
parent | Added ~ppc64; bug #195815 (diff) | |
download | historical-303aa8a0b1303b48fd6ac7dca22a894d81910925.tar.gz historical-303aa8a0b1303b48fd6ac7dca22a894d81910925.tar.bz2 historical-303aa8a0b1303b48fd6ac7dca22a894d81910925.zip |
Bump to version 3.1.2; Bug 185269. Thanks to Alon Bar-Lev and Mark Glines.
Package-Manager: portage-2.1.3.10
Diffstat (limited to 'dev-util/splint/splint-3.1.2.ebuild')
-rw-r--r-- | dev-util/splint/splint-3.1.2.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-util/splint/splint-3.1.2.ebuild b/dev-util/splint/splint-3.1.2.ebuild new file mode 100644 index 000000000000..1dd8d1d2d576 --- /dev/null +++ b/dev-util/splint/splint-3.1.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/splint/splint-3.1.2.ebuild,v 1.1 2007/10/25 16:02:18 masterdriverz Exp $ + +DESCRIPTION="Check C programs for vulnerabilities and programming mistakes" +HOMEPAGE="http://lclint.cs.virginia.edu/" +SRC_URI="http://www.splint.org/downloads/${P}.src.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc-macos ~ppc64 ~x86" +IUSE="" + +DEPEND="" + +src_compile() { + econf || die + emake -j1 || die "emake failed" +} + +src_install() { + make -j1 DESTDIR="${D}" install || die +} |