Gentoo Archives: gentoo-commits

From: "Saleem Abdulrasool (compnerd)" <compnerd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyxf86config: ChangeLog pyxf86config-0.3.34-r1.ebuild
Date: Sun, 13 Jan 2008 02:00:35
Message-Id: E1JDs9H-0003go-8y@stork.gentoo.org
1 compnerd 08/01/13 02:00:31
2
3 Modified: ChangeLog
4 Added: pyxf86config-0.3.34-r1.ebuild
5 Log:
6 add patch for compatibility with xorg-server-1.4 from conary
7 (Portage version: 2.1.4_rc14)
8
9 Revision Changes Path
10 1.6 dev-python/pyxf86config/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxf86config/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxf86config/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxf86config/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyxf86config/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 15 Oct 2007 10:23:41 -0000 1.5
23 +++ ChangeLog 13 Jan 2008 02:00:30 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/pyxf86config
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxf86config/ChangeLog,v 1.5 2007/10/15 10:23:41 dberkholz Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxf86config/ChangeLog,v 1.6 2008/01/13 02:00:30 compnerd Exp $
30 +
31 +*pyxf86config-0.3.34-r1 (13 Jan 2008)
32 +
33 + 13 Jan 2008; Saleem Abdulrasool <compnerd@g.o>
34 + +files/xorg-server-1.4-compat.patch, +pyxf86config-0.3.34-r1.ebuild:
35 + Revbump with patch for xorg-server-1.4 from conary
36
37 *pyxf86config-0.3.34 (15 Oct 2007)
38
39
40
41
42 1.1 dev-python/pyxf86config/pyxf86config-0.3.34-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxf86config/pyxf86config-0.3.34-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyxf86config/pyxf86config-0.3.34-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pyxf86config-0.3.34-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyxf86config/pyxf86config-0.3.34-r1.ebuild,v 1.1 2008/01/13 02:00:30 compnerd Exp $
52
53 inherit eutils python rpm
54
55 # Tag for which Fedora Core version it's from
56 FCVER="8"
57
58 # Revision of the RPM. Shouldn't affect us, as we're just grabbing the source
59 # tarball out of it
60 RPMREV="1"
61
62 DESCRIPTION="Python wrappers for libxf86config"
63 HOMEPAGE="http://fedoraproject.org/wiki/SystemConfig/"
64 SRC_URI="mirror://fedora-dev/development/source/SRPMS/${P}-${RPMREV}.fc${FCVER}.src.rpm"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~ppc ~x86"
69 IUSE=""
70
71 RDEPEND="=dev-libs/glib-2*
72 dev-lang/python"
73 DEPEND="${RDEPEND}
74 >=x11-base/xorg-server-1.1.1-r1"
75
76 src_unpack() {
77 rpm_src_unpack
78 cd "${S}"
79
80 if has_version '>=x11-base/xorg-server-1.4' ; then
81 epatch "${FILESDIR}/xorg-server-1.4-compat.patch"
82 fi
83 }
84
85 src_compile() {
86 python_version
87 econf --with-python-version=${PYVER} || die "econf failed"
88 emake || die "emake failed"
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die "emake install failed"
93 }
94
95
96
97 --
98 gentoo-commits@l.g.o mailing list