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-0.1.5.ebuild
Date: Tue, 03 Mar 2009 06:46:24
Message-Id: E1LeOOU-00024H-Ad@stork.gentoo.org
1 patrick 09/03/03 06:46:22
2
3 Modified: ChangeLog
4 Added: kbuild-0.1.5.ebuild
5 Log:
6 Bump to 0.1.5. Imported from the jokey overlay, ebuilds by Alessio Cassibba (X-Drum) <swapon@×××××.com>.
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 dev-util/kbuild/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/kbuild/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 28 Oct 2008 18:11:02 -0000 1.4
23 +++ ChangeLog 3 Mar 2009 06:46:22 -0000 1.5
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-util/kbuild
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/ChangeLog,v 1.4 2008/10/28 18:11:02 jokey Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/ChangeLog,v 1.5 2009/03/03 06:46:22 patrick Exp $
30 +
31 +*kbuild-0.1.5 (03 Mar 2009)
32 +
33 + 03 Mar 2009; Patrick Lauer <patrick@g.o> +kbuild-0.1.5.ebuild:
34 + Bump to 0.1.5. Imported from the jokey overlay, ebuilds by Alessio
35 + Cassibba (X-Drum) <swapon@×××××.com>. eautoreconf is now mandatory, force
36 + it. EAPI=2.
37
38 28 Oct 2008; Markus Ullmann <jokey@g.o> kbuild-0.1.4.ebuild:
39 Reinstate stable keyword for bug #244718
40
41
42
43 1.1 dev-util/kbuild/kbuild-0.1.5.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/kbuild-0.1.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/kbuild/kbuild-0.1.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: kbuild-0.1.5.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/kbuild-0.1.5.ebuild,v 1.1 2009/03/03 06:46:22 patrick Exp $
53
54 EAPI=2
55
56 WANT_AUTOMAKE=1.9
57
58 inherit eutils autotools
59
60 MY_P=kBuild-${PV}-src
61 DESCRIPTION="A makefile framework for writing simple makefiles for complex tasks"
62 HOMEPAGE="http://svn.netlabs.org/kbuild/wiki"
63 SRC_URI="ftp://ftp.netlabs.org/pub/kbuild/${MY_P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 DEPEND="dev-util/cvs
71 sys-devel/gettext"
72 RDEPEND=""
73
74 S=${WORKDIR}/${MY_P/-src}
75
76 src_prepare() {
77 rm -rf "${S}/kBuild/bin"
78
79 cd "${S}/src/kmk"
80 eautoreconf
81 cd "${S}/src/sed"
82 eautoreconf
83 }
84
85 src_compile() {
86 kBuild/env.sh --full \
87 make -f bootstrap.gmk AUTORECONF=true \
88 || die "bootstrap failed"
89 }
90
91 src_install() {
92 kBuild/env.sh kmk \
93 NIX_INSTALL_DIR=/usr \
94 PATH_INS="${D}" \
95 install || die "install failed"
96 }