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.19.0.ebuild ChangeLog
Date: Thu, 03 Oct 2013 12:17:23
Message-Id: 20131003121715.E0D9E2004C@flycatcher.gentoo.org
1 blueness 13/10/03 12:17:15
2
3 Modified: ChangeLog
4 Added: ct-ng-1.19.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.46 sys-devel/ct-ng/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 25 Feb 2013 20:25:33 -0000 1.45
24 +++ ChangeLog 3 Oct 2013 12:17:15 -0000 1.46
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-devel/ct-ng
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v 1.45 2013/02/25 20:25:33 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/ct-ng/ChangeLog,v 1.46 2013/10/03 12:17:15 blueness Exp $
30 +
31 +*ct-ng-1.19.0 (03 Oct 2013)
32 +
33 + 03 Oct 2013; Anthony G. Basile <blueness@g.o> +ct-ng-1.19.0.ebuild:
34 + Version bump
35
36 25 Feb 2013; Markos Chandras <hwoarang@g.o>
37 +files/ct-ng-1.18.0-parallel-fix.patch, ct-ng-1.18.0.ebuild:
38
39
40
41 1.1 sys-devel/ct-ng/ct-ng-1.19.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ct-ng-1.19.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/ct-ng/ct-ng-1.19.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ct-ng-1.19.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.19.0.ebuild,v 1.1 2013/10/03 12:17:15 blueness Exp $
51
52 EAPI="5"
53
54 inherit autotools bash-completion-r1 eutils
55
56 DESCRIPTION="crosstool-ng is a tool to build cross-compiling toolchains"
57 HOMEPAGE="http://crosstool-ng.org"
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 doc"
66
67 RDEPEND="net-misc/curl
68 dev-util/gperf
69 dev-vcs/cvs
70 dev-vcs/subversion"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${PN}-kconfig-respect-flags.patch
74
75 #Upstream provides ${S}/bootstrap which runs autoconf -Wall --force
76 #We'll use eautoconf to be portage friendly
77 eautoconf -Wall --force
78 }
79
80 src_install() {
81 emake DESTDIR="${D%/}" install
82 dobashcomp ${PN}.comp
83 dodoc README TODO
84 use doc && mv "${D}"/usr/share/doc/crosstool-ng/"${PN}.${PVR}"/* \
85 "${D}"/usr/share/doc/"${PF}"
86 rm -rf "${D}"/usr/share/doc/crosstool-ng
87 }