blob: 18302965baf1a8620a1ed6aab9169771c3b9f9bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2012 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.11 2012/03/21 16:54:18 jer 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 hppa ppc ppc64 sparc x86"
IUSE=""
DEPEND="
sys-devel/flex
virtual/yacc
"
RDEPEND=""
src_compile() {
econf || die
emake -j1 || die "emake failed"
}
src_install() {
make -j1 DESTDIR="${D}" install || die
}
|