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: ChangeLog ct-ng-1.14.0.ebuild
Date: Wed, 01 Feb 2012 13:17:08
Message-Id: 20120201131657.2CDF42004B@flycatcher.gentoo.org
1 blueness 12/02/01 13:16:57
2
3 Modified: ChangeLog
4 Added: ct-ng-1.14.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.44/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.27 sys-devel/ct-ng/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 24 Jan 2012 15:09:25 -0000 1.26
24 +++ ChangeLog 1 Feb 2012 13:16:57 -0000 1.27
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.26 2012/01/24 15:09:25 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v 1.27 2012/02/01 13:16:57 blueness Exp $
30 +
31 +*ct-ng-1.14.0 (01 Feb 2012)
32 +
33 + 01 Feb 2012; Anthony G. Basile <blueness@g.o> +ct-ng-1.14.0.ebuild:
34 + Version bump
35
36 *ct-ng-1.13.3 (24 Jan 2012)
37
38
39
40
41 1.1 sys-devel/ct-ng/ct-ng-1.14.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ct-ng-1.14.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ct-ng-1.14.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ct-ng-1.14.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.14.0.ebuild,v 1.1 2012/02/01 13:16:57 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-vcs/cvs
69 dev-vcs/subversion"
70
71 src_prepare() {
72 #Upstream provides ${S}/bootstrap which runs autoconf -Wall --force
73 #We'll use eautoconf to be portage friendly
74 eautoconf -Wall --force
75 }
76
77 src_install() {
78 emake DESTDIR="${D%/}" install || die "install failed"
79 dobashcomp ${PN}.comp
80 dodoc README TODO
81 }