Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/ct-ng: ct-ng-1.15.0.ebuild ChangeLog
Date: Tue, 01 May 2012 12:26:30
Message-Id: 20120501122619.A5BF82004B@flycatcher.gentoo.org
1 blueness 12/05/01 12:26:19
2
3 Modified: ChangeLog
4 Added: ct-ng-1.15.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.49/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.33 sys-devel/ct-ng/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 15 Feb 2012 01:51:56 -0000 1.32
24 +++ ChangeLog 1 May 2012 12:26:19 -0000 1.33
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-devel/ct-ng
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v 1.32 2012/02/15 01:51:56 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v 1.33 2012/05/01 12:26:19 blueness Exp $
30 +
31 +*ct-ng-1.15.0 (01 May 2012)
32 +
33 + 01 May 2012; Anthony G. Basile <blueness@g.o> +ct-ng-1.15.0.ebuild:
34 + Version bump
35
36 15 Feb 2012; Anthony G. Basile <blueness@g.o> -ct-ng-1.8.2.ebuild,
37 -ct-ng-1.9.2.ebuild, -ct-ng-1.10.1.ebuild, -ct-ng-1.11.3.ebuild:
38
39
40
41 1.1 sys-devel/ct-ng/ct-ng-1.15.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ct-ng-1.15.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ct-ng-1.15.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ct-ng-1.15.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ct-ng-1.15.0.ebuild,v 1.1 2012/05/01 12:26:19 blueness Exp $
51
52 EAPI="4"
53
54 inherit bash-completion-r1 autotools
55
56 DESCRIPTION="crosstool-ng is a tool to build cross-compiling toolchains"
57 HOMEPAGE="http://ymorin.is-a-geek.org/projects/crosstool"
58 MY_P=${P/ct/crosstool}
59 S=${WORKDIR}/${MY_P}
60 SRC_URI="http://ymorin.is-a-geek.org/download/crosstool-ng/${MY_P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="bash-completion"
66
67 RDEPEND="net-misc/curl
68 dev-util/gperf
69 dev-vcs/cvs
70 dev-vcs/subversion"
71
72 src_prepare() {
73 #Upstream provides ${S}/bootstrap which runs autoconf -Wall --force
74 #We'll use eautoconf to be portage friendly
75 eautoconf -Wall --force
76 }
77
78 src_install() {
79 emake DESTDIR="${D%/}" install || die "install failed"
80 dobashcomp ${PN}.comp
81 dodoc README TODO
82 }