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.4.1.ebuild lxdm-0.4.0.ebuild
Date: Tue, 02 Aug 2011 16:35:42
Message-Id: 20110802163532.32EFA2004C@flycatcher.gentoo.org
1 lxnay 11/08/02 16:35:32
2
3 Modified: ChangeLog
4 Added: lxdm-0.4.1.ebuild
5 Removed: lxdm-0.4.0.ebuild
6 Log:
7 version bump
8
9 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.7 lxde-base/lxdm/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 2 Aug 2011 16:29:55 -0000 1.6
25 +++ ChangeLog 2 Aug 2011 16:35:32 -0000 1.7
26 @@ -1,6 +1,12 @@
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.6 2011/08/02 16:29:55 lxnay Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v 1.7 2011/08/02 16:35:32 lxnay Exp $
31 +
32 +*lxdm-0.4.1 (02 Aug 2011)
33 +
34 + 02 Aug 2011; Fabio Erculiani <lxnay@g.o> -lxdm-0.4.0.ebuild,
35 + +lxdm-0.4.1.ebuild:
36 + version bump
37
38 *lxdm-0.4.0 (02 Aug 2011)
39
40
41
42
43 1.1 lxde-base/lxdm/lxdm-0.4.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: lxdm-0.4.1.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/lxde-base/lxdm/lxdm-0.4.1.ebuild,v 1.1 2011/08/02 16:35:32 lxnay Exp $
53
54 EAPI="2"
55
56 inherit eutils autotools
57
58 DESCRIPTION="LXDE Display Manager"
59 HOMEPAGE="http://lxde.org"
60 SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65
66 IUSE="debug gtk3 nls"
67
68 RDEPEND="sys-libs/pam
69 sys-auth/consolekit
70 x11-libs/libxcb
71 gtk3? ( x11-libs/gtk+:3 )
72 !gtk3? ( x11-libs/gtk+:2 )
73 nls? ( sys-devel/gettext )"
74 DEPEND="${RDEPEND}
75 >=dev-util/intltool-0.40
76 dev-util/pkgconfig"
77
78 src_configure() {
79 econf --enable-password \
80 --with-pam \
81 --with-x \
82 --with-xconn=xcb \
83 $(use_enable gtk3) \
84 $(use_enable nls) \
85 $(use_enable debug) \
86 || die "econf failed"
87 }
88
89 src_prepare() {
90 # There is consolekit
91 epatch "${FILESDIR}/${P}-pam_console-disable.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 exeinto /etc/lxdm
108 doexe "${FILESDIR}"/xinitrc || die
109 }
110
111 pkg_postinst() {
112 echo
113 elog "LXDM in the early stages of development!"
114 echo
115 }