Gentoo Archives: gentoo-commits

From: "Stephen Klimaszewski (steev)" <steev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-apps/xinit: ChangeLog xinit-1.0.5-r1.ebuild
Date: Mon, 10 Sep 2007 18:49:08
Message-Id: E1IUoD0-0003p3-Pv@stork.gentoo.org
1 steev 07/09/10 18:42:06
2
3 Modified: ChangeLog
4 Added: xinit-1.0.5-r1.ebuild
5 Log:
6 Add a new revision to 1.0.5 with consolekit support. This is use.masked on s390 and x86-fbsd until we get consolekit working on those two.
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.100 x11-apps/xinit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/ChangeLog?rev=1.100&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/ChangeLog?rev=1.100&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/ChangeLog?r1=1.99&r2=1.100
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v
19 retrieving revision 1.99
20 retrieving revision 1.100
21 diff -u -r1.99 -r1.100
22 --- ChangeLog 10 Sep 2007 03:13:52 -0000 1.99
23 +++ ChangeLog 10 Sep 2007 18:42:06 -0000 1.100
24 @@ -1,6 +1,14 @@
25 # ChangeLog for x11-apps/xinit
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v 1.99 2007/09/10 03:13:52 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v 1.100 2007/09/10 18:42:06 steev Exp $
29 +
30 +*xinit-1.0.5-r1 (10 Sep 2007)
31 +
32 + 10 Sep 2007; Steev Klimaszewski <steev@g.o>
33 + +files/xinit-1.0.4-console-kit.patch, +xinit-1.0.5-r1.ebuild:
34 + Add the patch from fdo bugzilla 12378 with useflag of hal rather than
35 + consoleki, added as a revision bump to 1.0.5. This adds consolekit support
36 + to xinit. Also requires dbus be build with the X useflag to properly work."
37
38 10 Sep 2007; Jeroen Roovers <jer@g.o> xinit-1.0.4.ebuild:
39 Stable for HPPA (bug #191615).
40
41
42
43 1.1 x11-apps/xinit/xinit-1.0.5-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/xinit-1.0.5-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/xinit-1.0.5-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xinit-1.0.5-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2007 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/xinit-1.0.5-r1.ebuild,v 1.1 2007/09/10 18:42:06 steev Exp $
53
54 # Must be before x-modular eclass is inherited
55 # This is enabled due to modified Makefile.am from the patches
56 SNAPSHOT="yes"
57
58 inherit x-modular pam
59
60 DESCRIPTION="X Window System initializer"
61
62 LICENSE="${LICENSE} GPL-2"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE="hal minimal"
65
66 RDEPEND="x11-apps/xauth
67 x11-libs/libX11
68 hal? ( sys-auth/consolekit )"
69 DEPEND="${RDEPEND}"
70 PDEPEND="!minimal? ( x11-wm/twm
71 x11-apps/xclock
72 x11-apps/xrdb
73 x11-apps/xsm
74 x11-terms/xterm )"
75
76 PATCHES="${FILESDIR}/nolisten-tcp-and-black-background.patch
77 ${FILESDIR}/gentoo-startx-customization-1.0.4.patch
78 ${FILESDIR}/xinit-1.0.4-console-kit.patch"
79
80 CONFIGURE_OPTIONS="$(use_with hal consolekit)"
81
82 pkg_setup() {
83 if ! built_with_use sys-apps/dbus X ; then
84 eerror "You MUST build sys-apps/dbus with the X USE flag enabled."
85 die "You MUST build sys-apps/dbus with the X USE flag enabled."
86 fi
87 }
88
89 src_unpack() {
90 x-modular_unpack_source
91 x-modular_patch_source
92
93 sed -i -e "s:^XINITDIR.*:XINITDIR = \$(sysconfdir)/X11/xinit:g" ${S}/Makefile.am
94
95 x-modular_reconf_source
96 }
97
98 src_install() {
99 x-modular_src_install
100 exeinto /etc/X11
101 doexe ${FILESDIR}/chooser.sh ${FILESDIR}/startDM.sh
102 exeinto /etc/X11/Sessions
103 doexe ${FILESDIR}/Xsession
104 exeinto /etc/X11/xinit
105 doexe ${FILESDIR}/xinitrc
106 newinitd ${FILESDIR}/xdm.initd-1 xdm
107 newconfd ${FILESDIR}/xdm.confd-1 xdm
108 newpamd ${FILESDIR}/xserver.pamd xserver
109 }
110
111
112
113 --
114 gentoo-commits@g.o mailing list