summaryrefslogtreecommitdiffstats
path: root/dist/portage/dev-util/kbuild/kbuild-0.1.5.ebuild
blob: 4aa1f66d88e07c949590fc923d3364504bcad67d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/kbuild-0.1.4.ebuild,v 1.4 2008/10/28 18:11:02 jokey Exp $

EAPI=1

WANT_AUTOMAKE=1.9

inherit eutils autotools

MY_P=kBuild-${PV}-src
DESCRIPTION="A makefile framework for writing simple makefiles for complex tasks"
HOMEPAGE="http://svn.netlabs.org/kbuild/wiki"
SRC_URI="ftp://ftp.netlabs.org/pub/kbuild/${MY_P}.tar.gz"

LICENSE="GPL-2 GPL-3 FDL-1.3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""

DEPEND="sys-devel/bison
	sys-devel/flex
	sys-devel/gettext"

S=${WORKDIR}/${MY_P/-src}

src_unpack() {
		unpack ${A}
		cd "${S}"
}

src_compile() {
		kBuild/env.sh --full \
		make -f bootstrap.gmk NIX_INSTALL_DIR=/usr || die "bootstrap failed"
}

src_install() {
		kBuild/env.sh --full-with-bin kmk \
		NIX_INSTALL_DIR=/usr \
		PATH_INS="${D}" \
		install || die "install failed"
}