Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/scons: ChangeLog scons-1.2.0_p20091224.ebuild
Date: Mon, 04 Jan 2010 08:36:36
Message-Id: E1NRiQR-0006an-1D@stork.gentoo.org
1 djc 10/01/04 08:36:31
2
3 Modified: ChangeLog
4 Added: scons-1.2.0_p20091224.ebuild
5 Log:
6 Bump dev-util/scons to 1.2.0_p20091224.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.74 dev-util/scons/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/scons/ChangeLog?rev=1.74&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/scons/ChangeLog?rev=1.74&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/scons/ChangeLog?r1=1.73&r2=1.74
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v
19 retrieving revision 1.73
20 retrieving revision 1.74
21 diff -u -r1.73 -r1.74
22 --- ChangeLog 12 Apr 2009 18:07:35 -0000 1.73
23 +++ ChangeLog 4 Jan 2010 08:36:30 -0000 1.74
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/scons
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.73 2009/04/12 18:07:35 ranger Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.74 2010/01/04 08:36:30 djc Exp $
30 +
31 +*scons-1.2.0_p20091224 (04 Jan 2010)
32 +
33 + 04 Jan 2010; Dirkjan Ochtman <djc@g.o>
34 + +scons-1.2.0_p20091224.ebuild:
35 + Bump to 1.2.0.d20091224. Thanks to Johan Bergstroem for the patch.
36
37 12 Apr 2009; Brent Baude <ranger@g.o> scons-1.2.0-r1.ebuild:
38 stable ppc64, bug 264537
39
40
41
42 1.1 dev-util/scons/scons-1.2.0_p20091224.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/scons/scons-1.2.0_p20091224.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/scons/scons-1.2.0_p20091224.ebuild?rev=1.1&content-type=text/plain
46
47 Index: scons-1.2.0_p20091224.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/scons/scons-1.2.0_p20091224.ebuild,v 1.1 2010/01/04 08:36:30 djc Exp $
52
53 EAPI=2
54
55 inherit distutils
56
57 MY_PV=${PV/_p/.d}
58
59 DESCRIPTION="Extensible Python-based build utility"
60 SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tar.gz
61 doc? ( http://www.scons.org/doc/${MY_PV}/PDF/${PN}-user.pdf -> ${P}-user.pdf
62 http://www.scons.org/doc/${MY_PV}/HTML/${PN}-user.html -> ${P}-user.html )"
63
64 HOMEPAGE="http://www.scons.org/"
65
66 SLOT="0"
67 LICENSE="MIT"
68 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
69 IUSE="doc"
70 DEPEND=">=dev-lang/python-2.5[threads]"
71 RDEPEND=${DEPEND}
72 DOCS="RELEASE.txt CHANGES.txt"
73
74 S=${WORKDIR}/${PN}-${MY_PV}
75
76 src_prepare() {
77 epatch "${FILESDIR}"/scons-1.2.0-popen.patch
78 }
79
80 src_install () {
81 distutils_src_install
82 # move man pages from /usr/man to /usr/share/man
83 dodir /usr/share
84 mv "${D}"/usr/man "${D}"/usr/share
85 if use doc; then
86 insinto /usr/share/doc/${PF}
87 doins "${DISTDIR}"/${P}-user.{pdf,html}
88 fi
89 }
90
91 pkg_postinst() {
92 python_mod_optimize /usr/$(get_libdir)/${P}
93 }
94
95 pkg_postrm() {
96 python_mod_cleanup /usr/$(get_libdir)/${P}
97 }