Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/build: build-0.3.9.ebuild ChangeLog
Date: Fri, 01 Jun 2012 07:02:55
Message-Id: 20120601070244.C4FEB2004B@flycatcher.gentoo.org
1 dev-zero 12/06/01 07:02:44
2
3 Modified: ChangeLog
4 Added: build-0.3.9.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.10.56/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-util/build/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/build/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/build/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/build/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/build/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 20 Oct 2010 05:53:31 -0000 1.1
24 +++ ChangeLog 1 Jun 2012 07:02:44 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/build
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/build/ChangeLog,v 1.1 2010/10/20 05:53:31 dev-zero Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/build/ChangeLog,v 1.2 2012/06/01 07:02:44 dev-zero Exp $
31 +
32 +*build-0.3.9 (01 Jun 2012)
33 +
34 + 01 Jun 2012; Tiziano Müller <dev-zero@g.o> +build-0.3.9.ebuild:
35 + Version bump.
36
37 *build-0.3.8 (20 Oct 2010)
38
39
40
41
42 1.1 dev-util/build/build-0.3.9.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/build/build-0.3.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/build/build-0.3.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: build-0.3.9.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/build/build-0.3.9.ebuild,v 1.1 2012/06/01 07:02:44 dev-zero Exp $
52
53 EAPI="4"
54
55 inherit versionator
56
57 DESCRIPTION="A massively-parallel software build system implemented on top of GNU make."
58 HOMEPAGE="http://kolpackov.net/projects/build/"
59 SLOT="$(get_version_component_range 1-2)"
60 SRC_URI="http://www.codesynthesis.com/download/${PN}/${SLOT}/${P}.tar.bz2"
61 LICENSE="GPL-2"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="examples"
64
65 DEPEND=""
66 RDEPEND=""
67
68 src_install() {
69 emake install_prefix="${D}/usr" install
70
71 dodoc documentation/[[:upper:]]*
72 dohtml -A xhtml documentation/*.{css,xhtml}
73
74 if use examples ; then
75 # preserving symlinks in the examples
76 cp -dpR examples "${D}/usr/share/doc/${PF}"
77 fi
78 }