Gentoo Archives: gentoo-commits

From: "Matthias Schwarzott (zzam)" <zzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-apps/xinit: ChangeLog xinit-1.0.8-r3.ebuild
Date: Tue, 06 May 2008 08:16:59
Message-Id: E1JtIM4-0002TS-MT@stork.gentoo.org
1 zzam 08/05/06 08:16:56
2
3 Modified: ChangeLog
4 Added: xinit-1.0.8-r3.ebuild
5 Log:
6 Fix xdm init-script to be run after lircmd instead of just lircd to be able to use virtual lirc mouse device, Bug #180163.
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.116 x11-apps/xinit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/ChangeLog?rev=1.116&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/ChangeLog?rev=1.116&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/ChangeLog?r1=1.115&r2=1.116
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v
19 retrieving revision 1.115
20 retrieving revision 1.116
21 diff -u -r1.115 -r1.116
22 --- ChangeLog 9 Apr 2008 02:08:44 -0000 1.115
23 +++ ChangeLog 6 May 2008 08:16:56 -0000 1.116
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-apps/xinit
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v 1.115 2008/04/09 02:08:44 dirtyepic Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v 1.116 2008/05/06 08:16:56 zzam Exp $
29 +
30 +*xinit-1.0.8-r3 (06 May 2008)
31 +
32 + 06 May 2008; Matthias Schwarzott <zzam@g.o> +files/xdm.initd-2,
33 + +xinit-1.0.8-r3.ebuild:
34 + Fix xdm init-script to be run after lircmd instead of just lircd to be
35 + able to use virtual lirc mouse device, Bug #180163.
36
37 *xinit-1.0.8-r2 (09 Apr 2008)
38
39
40
41
42 1.1 x11-apps/xinit/xinit-1.0.8-r3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/xinit-1.0.8-r3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-apps/xinit/xinit-1.0.8-r3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xinit-1.0.8-r3.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/x11-apps/xinit/xinit-1.0.8-r3.ebuild,v 1.1 2008/05/06 08:16:56 zzam Exp $
52
53 # Must be before x-modular eclass is inherited
54 # This is enabled due to modified Makefile.am from the patches
55 SNAPSHOT="yes"
56
57 inherit x-modular pam
58
59 DESCRIPTION="X Window System initializer"
60
61 LICENSE="${LICENSE} GPL-2"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
63 IUSE="hal minimal pam"
64
65 RDEPEND="x11-apps/xauth
66 x11-libs/libX11
67 hal? ( sys-auth/consolekit )"
68 DEPEND="${RDEPEND}"
69 PDEPEND="!minimal? ( x11-wm/twm
70 x11-apps/xclock
71 x11-apps/xrdb
72 x11-apps/xsm
73 x11-terms/xterm )"
74
75 PATCHES="${FILESDIR}/nolisten-tcp-and-black-background.patch
76 ${FILESDIR}/gentoo-startx-customization-1.0.8.patch
77 ${FILESDIR}/xinit-1.0.4-console-kit.patch"
78
79 CONFIGURE_OPTIONS="$(use_with hal consolekit)"
80
81 pkg_setup() {
82 if use hal; then
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 fi
88 }
89
90 src_unpack() {
91 x-modular_unpack_source
92 x-modular_patch_source
93
94 sed -i -e "s:^XINITDIR.*:XINITDIR = \$(sysconfdir)/X11/xinit:g" "${S}/Makefile.am"
95
96 x-modular_reconf_source
97 }
98
99 src_install() {
100 x-modular_src_install
101 exeinto /etc/X11
102 doexe "${FILESDIR}"/chooser.sh "${FILESDIR}"/startDM.sh || die
103 exeinto /etc/X11/Sessions
104 doexe "${FILESDIR}"/Xsession || die
105 exeinto /etc/X11/xinit
106 doexe "${FILESDIR}"/xinitrc || die
107 newinitd "${FILESDIR}"/xdm.initd-2 xdm
108 newconfd "${FILESDIR}"/xdm.confd-1 xdm
109 newpamd "${FILESDIR}"/xserver.pamd xserver
110 newenvd "${FILESDIR}"/xsession.env.d 90xsession
111 }
112
113
114
115 --
116 gentoo-commits@l.g.o mailing list