You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/kbuild/kbuild-9999.ebuild

47 lines
840 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=2
WANT_AUTOMAKE=1.9
inherit autotools eutils subversion
DESCRIPTION="A makefile framework for writing simple makefiles for complex tasks"
HOMEPAGE="http://svn.netlabs.org/kbuild/wiki"
ESVN_REPO_URI="http://svn.netlabs.org/repos/kbuild/trunk"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="sys-devel/gettext
virtual/yacc"
RDEPEND=""
S=${WORKDIR}/${MY_P/-src}
src_prepare() {
rm -rf "${S}/kBuild/bin"
cd "${S}/src/kmk"
eautoreconf
cd "${S}/src/sed"
eautoreconf
}
src_compile() {
kBuild/env.sh --full \
make -f bootstrap.gmk AUTORECONF=true \
|| die "bootstrap failed"
}
src_install() {
kBuild/env.sh kmk \
NIX_INSTALL_DIR=/usr \
PATH_INS="${D}" \
install || die "install failed"
}