diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-21 20:11:27 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-21 20:11:27 +0000 |
commit | d4a0fd885c9305217026b57f9fbdb570d3d99c29 (patch) | |
tree | d8d23ce91bc173b8e6431095dc6d50fc27d98b46 /dev-util/splint | |
parent | tidy (diff) | |
download | historical-d4a0fd885c9305217026b57f9fbdb570d3d99c29.tar.gz historical-d4a0fd885c9305217026b57f9fbdb570d3d99c29.tar.bz2 historical-d4a0fd885c9305217026b57f9fbdb570d3d99c29.zip |
leave MAKEOPTS alone
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 |