Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-apps/xdm: ChangeLog xdm-1.1.10-r1.ebuild
Date: Mon, 24 Jan 2011 15:47:08
Message-Id: 20110124154659.156E720054@flycatcher.gentoo.org
1 ssuominen 11/01/24 15:46:59
2
3 Modified: ChangeLog
4 Added: xdm-1.1.10-r1.ebuild
5 Log:
6 Use pam.eclass to generate system-local-login based pam.d file instead of using custom pam.d file. This is required to get pam_loginuid and pam_ck_connector from pambase wrt #352526.
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.109 x11-apps/xdm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/xdm/ChangeLog?rev=1.109&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/xdm/ChangeLog?rev=1.109&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/xdm/ChangeLog?r1=1.108&r2=1.109
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-apps/xdm/ChangeLog,v
20 retrieving revision 1.108
21 retrieving revision 1.109
22 diff -u -r1.108 -r1.109
23 --- ChangeLog 16 Jan 2011 22:38:18 -0000 1.108
24 +++ ChangeLog 24 Jan 2011 15:46:58 -0000 1.109
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-apps/xdm
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xdm/ChangeLog,v 1.108 2011/01/16 22:38:18 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xdm/ChangeLog,v 1.109 2011/01/24 15:46:58 ssuominen Exp $
30 +
31 +*xdm-1.1.10-r1 (24 Jan 2011)
32 +
33 + 24 Jan 2011; Samuli Suominen <ssuominen@g.o> +xdm-1.1.10-r1.ebuild:
34 + Use pam.eclass to generate system-local-login based pam.d file instead of
35 + using custom pam.d file. This is required to get pam_loginuid and
36 + pam_ck_connector from pambase wrt #352526.
37
38 16 Jan 2011; Michał Górny <mgorny@g.o> xdm-1.1.8.ebuild,
39 xdm-1.1.9.ebuild, xdm-1.1.10.ebuild:
40
41
42
43 1.1 x11-apps/xdm/xdm-1.1.10-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/xdm/xdm-1.1.10-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/xdm/xdm-1.1.10-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xdm-1.1.10-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-apps/xdm/xdm-1.1.10-r1.ebuild,v 1.1 2011/01/24 15:46:58 ssuominen Exp $
53
54 EAPI=3
55
56 inherit multilib xorg-2 pam
57
58 DEFAULTVT="vt7"
59
60 DESCRIPTION="X.Org xdm application"
61
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
63 IUSE="ipv6 pam"
64
65 RDEPEND="x11-apps/xrdb
66 x11-libs/libXdmcp
67 x11-libs/libXaw
68 >=x11-apps/xinit-1.0.2-r3
69 x11-libs/libXinerama
70 x11-libs/libXmu
71 x11-libs/libX11
72 x11-libs/libXt
73 x11-apps/sessreg
74 x11-apps/xconsole
75 pam? ( virtual/pam )"
76 DEPEND="${RDEPEND}
77 x11-proto/xineramaproto
78 x11-proto/xproto"
79
80 PATCHES=( "${FILESDIR}"/xwilling-hang.patch )
81
82 pkg_setup() {
83 CONFIGURE_OPTIONS="$(use_enable ipv6)
84 $(use_with pam)
85 --with-default-vt=${DEFAULTVT}
86 --with-xdmconfigdir=/etc/X11/xdm"
87 }
88
89 src_install() {
90 xorg-2_src_install
91 exeinto /usr/$(get_libdir)/X11/xdm
92 doexe "${FILESDIR}"/Xsession || die
93 if use pam; then
94 # Use system-local-login to get pam_loginuid and pam_ck_connector from
95 # pambase. This is required to get active ConsoleKit session since 0.4.2.
96 pamd_mimic system-local-login xdm auth account session
97 fi
98 # Keep /var/lib/xdm. This is where authfiles are stored. See #286350.
99 keepdir /var/lib/xdm
100 }