blob: 3d9a6854cd561040226228230d555b9c92719c36 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/sparse-0.2.ebuild,v 1.1 2006/12/08 15:17:07 solar Exp $
DESCRIPTION="C semantic parser"
HOMEPAGE="http://kernel.org/pub/linux/kernel/people/josh/sparse/"
SRC_URI="http://kernel.org/pub/linux/kernel/people/josh/sparse/dist/${P}.tar.gz"
LICENSE="OSL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~s390 ~sh ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
src_compile() {
emake CFLAGS="${CFLAGS} -fpic" LDFLAGS="${LDFLAGS}" || die
}
src_install() {
dodir /usr/bin
emake install BINDIR="${D}"/usr/bin || die
# newbin check sparse || die
# dolib.so libsparse.so || die
dodoc FAQ README
}
|