diff options
Diffstat (limited to 'dev-util/splint')
-rw-r--r-- | dev-util/splint/splint-3.1.1.ebuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/dev-util/splint/splint-3.1.1.ebuild b/dev-util/splint/splint-3.1.1.ebuild index 897e3fa0e602..7cb3dec4f3d0 100644 --- a/dev-util/splint/splint-3.1.1.ebuild +++ b/dev-util/splint/splint-3.1.1.ebuild @@ -1,16 +1,22 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/splint/splint-3.1.1.ebuild,v 1.6 2004/06/25 02:47:30 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/splint/splint-3.1.1.ebuild,v 1.7 2004/07/21 20:11:27 mr_bones_ 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" -SLOT="0" + LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ppc ~amd64" IUSE="" + DEPEND="sys-devel/gcc" -MAKEOPTS="-j1" + +src_compile() { + econf || die + emake -j1 || die "emake failed" +} src_install() { make DESTDIR=${D} install || die |