Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/kbuild: ChangeLog kbuild-9999.ebuild
Date: Sun, 29 Mar 2009 09:47:32
Message-Id: E1Lnrbz-00046p-RL@stork.gentoo.org
1 patrick 09/03/29 09:47:27
2
3 Modified: ChangeLog
4 Added: kbuild-9999.ebuild
5 Log:
6 Adding kbuild live ebuild for virtualbox-9999. Thanks to Alessio Cassibba (X-Drum). Based on the ebuild from the jokey overlay.
7 (Portage version: 2.2_rc28/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 dev-util/kbuild/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/kbuild/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 11 Mar 2009 09:42:58 -0000 1.6
23 +++ ChangeLog 29 Mar 2009 09:47:27 -0000 1.7
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/kbuild
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/ChangeLog,v 1.6 2009/03/11 09:42:58 jokey Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/ChangeLog,v 1.7 2009/03/29 09:47:27 patrick Exp $
29 +
30 +*kbuild-9999 (29 Mar 2009)
31 +
32 + 29 Mar 2009; Patrick Lauer <patrick@g.o> +kbuild-9999.ebuild:
33 + Adding kbuild live ebuild for virtualbox-9999. Thanks to Alessio Cassibba
34 + (X-Drum). Based on the ebuild from the jokey overlay.
35
36 11 Mar 2009; Markus Ullmann <jokey@g.o>
37 +files/kbuild-unknown-configure-opt.patch, kbuild-0.1.5.ebuild:
38
39
40
41 1.1 dev-util/kbuild/kbuild-9999.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/kbuild-9999.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/kbuild-9999.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kbuild-9999.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/kbuild-9999.ebuild,v 1.1 2009/03/29 09:47:27 patrick Exp $
51
52 EAPI=2
53
54 WANT_AUTOMAKE=1.9
55
56 inherit autotools eutils subversion
57
58 DESCRIPTION="A makefile framework for writing simple makefiles for complex tasks"
59 HOMEPAGE="http://svn.netlabs.org/kbuild/wiki"
60 ESVN_REPO_URI="http://svn.netlabs.org/repos/kbuild/trunk"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS=""
65 IUSE=""
66
67 DEPEND="sys-devel/gettext"
68 RDEPEND=""
69
70 S=${WORKDIR}/${MY_P/-src}
71
72 src_prepare() {
73 rm -rf "${S}/kBuild/bin"
74
75 cd "${S}/src/kmk"
76 eautoreconf
77 cd "${S}/src/sed"
78 eautoreconf
79 }
80
81 src_compile() {
82 kBuild/env.sh --full \
83 make -f bootstrap.gmk AUTORECONF=true \
84 || die "bootstrap failed"
85 }
86
87 src_install() {
88 kBuild/env.sh kmk \
89 NIX_INSTALL_DIR=/usr \
90 PATH_INS="${D}" \
91 install || die "install failed"
92 }