blob: ae96435d422d02d236ecf12a2230702f3971d14d (
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
|
# Copyright 2005-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/sparse-2005.10.28.ebuild,v 1.1 2005/10/27 23:20:33 solar Exp $
MY_PV=${PV//./-}
MY_PV2=${PV//./}
DESCRIPTION="sparse - C semantic parser"
HOMEPAGE="http://kernel.org/pub/scm/devel/sparse/"
SRC_URI="http://www.codemonkey.org.uk/projects/git-snapshots/sparse/${PN}-${MY_PV}.tar.gz"
LICENSE="OSL-1.1"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND=""
S=${WORKDIR}/git-snapshot-${MY_PV2}
src_install() {
newbin check sparse
dolib libsparse.so
dodoc FAQ LICENSE README
}
|