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-r1.ebuild lxdm-0.3.0.ebuild
Date: Tue, 25 Jan 2011 09:41:40
Message-Id: 20110125094129.12D3320054@flycatcher.gentoo.org
1 lxnay 11/01/25 09:41:29
2
3 Modified: ChangeLog
4 Added: lxdm-0.3.0-r1.ebuild
5 Removed: lxdm-0.3.0.ebuild
6 Log:
7 add librsvg as RDEPEND, since the shipped gtk theme uses SVG, close bug #346833
8
9 (Portage version: 2.2.0_alpha13/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.2 lxde-base/lxdm/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 24 Jan 2011 19:08:19 -0000 1.1
25 +++ ChangeLog 25 Jan 2011 09:41:28 -0000 1.2
26 @@ -1,6 +1,13 @@
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.1 2011/01/24 19:08:19 lxnay Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v 1.2 2011/01/25 09:41:28 lxnay Exp $
31 +
32 +*lxdm-0.3.0-r1 (25 Jan 2011)
33 +
34 + 25 Jan 2011; Fabio Erculiani <lxnay@g.o> -lxdm-0.3.0.ebuild,
35 + +lxdm-0.3.0-r1.ebuild:
36 + add librsvg as RDEPEND, since the shipped gtk theme uses SVG, close bug
37 + #346833
38
39 *lxdm-0.3.0 (24 Jan 2011)
40
41
42
43
44 1.1 lxde-base/lxdm/lxdm-0.3.0-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.3.0-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.3.0-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: lxdm-0.3.0-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/lxdm-0.3.0-r1.ebuild,v 1.1 2011/01/25 09:41:28 lxnay Exp $
54
55 EAPI="2"
56
57 inherit eutils autotools
58
59 DESCRIPTION="LXDE Display Manager"
60 HOMEPAGE="http://lxde.org"
61 SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66
67 IUSE="+consolekit nls"
68
69 COMMON_DEPEND="sys-libs/pam
70 x11-libs/gtk+:2
71 consolekit? ( sys-auth/consolekit )
72 nls? ( sys-devel/gettext )"
73 DEPEND="${COMMON_DEPEND}
74 >=dev-util/intltool-0.40
75 dev-util/pkgconfig"
76 RDEPEND="${COMMON_DEPEND}
77 gnome-base/librsvg"
78
79 src_configure() {
80 econf --with-x $(use_enable nls) || die "econf failed"
81 }
82
83 src_prepare() {
84 # There is consolekit
85 epatch "${FILESDIR}/${P}-pam_console-disable.patch"
86 use consolekit || epatch "${FILESDIR}/${P}-consolekit-disable.patch"
87
88 # this replaces the bootstrap/autogen script in most packages
89 eautoreconf
90
91 # process LINGUAS
92 if use nls; then
93 einfo "Running intltoolize ..."
94 intltoolize --force --copy --automake || die
95 strip-linguas -i "${S}/po" || die
96 fi
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die
101 dodoc AUTHORS README TODO || die
102 }
103
104 pkg_postinst() {
105 echo
106 elog "LXDM in the early stages of development!"
107 echo
108 }