Gentoo Archives: gentoo-commits

From: "Fabio Erculiani (lxnay)" <lxnay@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in lxde-base/lxdm: ChangeLog lxdm-0.3.0-r3.ebuild lxdm-0.3.0-r2.ebuild
Date: Sun, 03 Jul 2011 10:02:40
Message-Id: 20110703100230.167102004B@flycatcher.gentoo.org
1 lxnay 11/07/03 10:02:30
2
3 Modified: ChangeLog
4 Added: lxdm-0.3.0-r3.ebuild
5 Removed: lxdm-0.3.0-r2.ebuild
6 Log:
7 add patch that fixes loading of Fluxbox, E17, Openbox and perhaps others, see http://lxnay.wordpress.com/2011/07/03/lxdm-the-wannabe-login-manager for more details
8
9 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.5 lxde-base/lxdm/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.5&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.5&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?r1=1.4&r2=1.5
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v
21 retrieving revision 1.4
22 retrieving revision 1.5
23 diff -u -r1.4 -r1.5
24 --- ChangeLog 18 Feb 2011 08:01:01 -0000 1.4
25 +++ ChangeLog 3 Jul 2011 10:02:29 -0000 1.5
26 @@ -1,6 +1,16 @@
27 # ChangeLog for lxde-base/lxdm
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v 1.4 2011/02/18 08:01:01 lxnay Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v 1.5 2011/07/03 10:02:29 lxnay Exp $
31 +
32 +*lxdm-0.3.0-r3 (03 Jul 2011)
33 +
34 + 03 Jul 2011; Fabio Erculiani <lxnay@g.o> -lxdm-0.3.0-r2.ebuild,
35 + +lxdm-0.3.0-r3.ebuild,
36 + +files/lxdm-0.3.0-properly-load-session-settings-using-dmrc-entry-as-pointer-
37 + for-xsessions-dir-file.patch:
38 + add patch that fixes loading of Fluxbox, E17, Openbox and perhaps others, see
39 + http://lxnay.wordpress.com/2011/07/03/lxdm-the-wannabe-login-manager for more
40 + details
41
42 *lxdm-0.3.0-r2 (18 Feb 2011)
43
44
45
46
47 1.1 lxde-base/lxdm/lxdm-0.3.0-r3.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.3.0-r3.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.3.0-r3.ebuild?rev=1.1&content-type=text/plain
51
52 Index: lxdm-0.3.0-r3.ebuild
53 ===================================================================
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/lxdm-0.3.0-r3.ebuild,v 1.1 2011/07/03 10:02:29 lxnay Exp $
57
58 EAPI="2"
59
60 inherit eutils autotools
61
62 DESCRIPTION="LXDE Display Manager"
63 HOMEPAGE="http://lxde.org"
64 SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz"
65
66 LICENSE="GPL-3"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69
70 IUSE="+consolekit nls"
71
72 COMMON_DEPEND="sys-libs/pam
73 x11-libs/gtk+:2
74 consolekit? ( sys-auth/consolekit )
75 nls? ( sys-devel/gettext )"
76 DEPEND="${COMMON_DEPEND}
77 >=dev-util/intltool-0.40
78 dev-util/pkgconfig"
79 RDEPEND="${COMMON_DEPEND}
80 gnome-base/librsvg"
81
82 src_configure() {
83 econf --with-x $(use_enable nls) || die "econf failed"
84 }
85
86 src_prepare() {
87 # There is consolekit
88 epatch "${FILESDIR}/${P}-pam_console-disable.patch"
89 use consolekit || epatch "${FILESDIR}/${P}-consolekit-disable.patch"
90
91 epatch "${FILESDIR}"/${P}-properly-load-session-settings-using-dmrc-entry-as-pointer-for-xsessions-dir-file.patch
92
93 # this replaces the bootstrap/autogen script in most packages
94 eautoreconf
95
96 # process LINGUAS
97 if use nls; then
98 einfo "Running intltoolize ..."
99 intltoolize --force --copy --automake || die
100 strip-linguas -i "${S}/po" || die
101 fi
102 }
103
104 src_install() {
105 emake DESTDIR="${D}" install || die
106 dodoc AUTHORS README TODO || die
107 # install xinitrc
108 exeinto /etc/lxdm
109 doexe "${FILESDIR}"/xinitrc || die
110 }
111
112 pkg_postinst() {
113 echo
114 elog "LXDM is in early stage of development."
115 echo
116 }