Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/lightdm-gtk-greeter: lightdm-gtk-greeter-2.0.1.ebuild ChangeLog
Date: Sun, 31 May 2015 10:28:52
Message-Id: 20150531102844.A232DA10@oystercatcher.gentoo.org
1 hwoarang 15/05/31 10:28:44
2
3 Modified: ChangeLog
4 Added: lightdm-gtk-greeter-2.0.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!)
9
10 Revision Changes Path
11 1.30 x11-misc/lightdm-gtk-greeter/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm-gtk-greeter/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm-gtk-greeter/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm-gtk-greeter/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/lightdm-gtk-greeter/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 3 Mar 2015 12:06:21 -0000 1.29
24 +++ ChangeLog 31 May 2015 10:28:44 -0000 1.30
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-misc/lightdm-gtk-greeter
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm-gtk-greeter/ChangeLog,v 1.29 2015/03/03 12:06:21 dlan Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm-gtk-greeter/ChangeLog,v 1.30 2015/05/31 10:28:44 hwoarang Exp $
30 +
31 +*lightdm-gtk-greeter-2.0.1 (31 May 2015)
32 +
33 + 31 May 2015; Markos Chandras <hwoarang@g.o>
34 + +lightdm-gtk-greeter-2.0.1.ebuild:
35 + Version bump
36
37 03 Mar 2015; Yixun Lan <dlan@g.o> lightdm-gtk-greeter-2.0.0.ebuild:
38 add arm64 support, tested on A53 board
39
40
41
42 1.1 x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lightdm-gtk-greeter-2.0.1.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.1.ebuild,v 1.1 2015/05/31 10:28:44 hwoarang Exp $
52
53 EAPI=4
54
55 inherit versionator
56
57 DESCRIPTION="LightDM GTK+ Greeter"
58 HOMEPAGE="http://launchpad.net/lightdm-gtk-greeter"
59 SRC_URI="http://launchpad.net/lightdm-gtk-greeter/$(get_version_component_range 1-2)/${PV}/+download/${P}.tar.gz branding? (
60 http://dev.gentoo.org/~hwoarang/distfiles/lightdm-gentoo-patch-2.tar.gz )"
61
62 LICENSE="GPL-3 LGPL-3
63 branding? ( CC-BY-3.0 )"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
66 IUSE="branding"
67
68 DEPEND="x11-libs/gtk+:3
69 >=x11-misc/lightdm-1.2.2"
70 RDEPEND="!!<x11-misc/lightdm-1.1.1
71 x11-libs/gtk+:3
72 >=x11-misc/lightdm-1.2.2
73 x11-themes/gnome-themes-standard
74 x11-themes/gnome-icon-theme"
75
76 GENTOO_BG="gentoo-bg_65.jpg"
77
78 src_prepare() {
79 # Ok, this has to be fixed in the tarball but I am too lazy to do it.
80 # I will fix this once I decide to update the tarball with a new gentoo
81 # background
82 # Bug #404467
83 if use branding; then
84 sed -i -e "/xft-hintstyle/s:slight:hintslight:" \
85 "${WORKDIR}"/${PN}.conf || die
86 fi
87 }
88
89 src_install() {
90 default
91
92 if use branding; then
93 insinto /etc/lightdm/
94 doins "${WORKDIR}"/${PN}.conf
95 insinto /usr/share/lightdm/backgrounds/
96 doins "${WORKDIR}"/${GENTOO_BG}
97 sed -i -e \
98 "/background/s:=.*:=/usr/share/lightdm/backgrounds/${GENTOO_BG}:" \
99 "${D}"/etc/lightdm/${PN}.conf || die
100 newdoc "${WORKDIR}"/README.txt README-background.txt
101 fi
102 }