Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/lightdm-gtk-greeter/
Date: Sat, 30 Sep 2017 01:07:54
Message-Id: 1506733665.0027b0f53ad9284114371b3e44a250f069aad319.polynomial-c@gentoo
1 commit: 0027b0f53ad9284114371b3e44a250f069aad319
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 30 01:07:09 2017 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 30 01:07:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0027b0f5
7
8 x11-misc/lightdm-gtk-greeter: Removed old.
9
10 Package-Manager: Portage-2.3.10, Repoman-2.3.3
11
12 .../lightdm-gtk-greeter-2.0.2.ebuild | 64 ----------------------
13 1 file changed, 64 deletions(-)
14
15 diff --git a/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.2.ebuild b/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.2.ebuild
16 deleted file mode 100644
17 index 409a5950371..00000000000
18 --- a/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.2.ebuild
19 +++ /dev/null
20 @@ -1,64 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit versionator
27 -
28 -DESCRIPTION="LightDM GTK+ Greeter"
29 -HOMEPAGE="https://launchpad.net/lightdm-gtk-greeter"
30 -SRC_URI="https://launchpad.net/lightdm-gtk-greeter/$(get_version_component_range 1-2)/${PV}/+download/${P}.tar.gz
31 - branding? ( https://dev.gentoo.org/~hwoarang/distfiles/lightdm-gentoo-patch-2.tar.gz )"
32 -
33 -LICENSE="GPL-3 LGPL-3
34 - branding? ( CC-BY-3.0 )"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
37 -IUSE="ayatana branding"
38 -
39 -COMMON_DEPEND="ayatana? ( dev-libs/libindicator:3 )
40 - x11-libs/gtk+:3
41 - >=x11-misc/lightdm-1.2.2"
42 -
43 -DEPEND="${COMMON_DEPEND}
44 - dev-util/intltool
45 - sys-devel/gettext
46 - xfce-base/exo"
47 -
48 -RDEPEND="${COMMON_DEPEND}
49 - x11-themes/gnome-themes-standard
50 - >=x11-themes/adwaita-icon-theme-3.14.1"
51 -
52 -GENTOO_BG="gentoo-bg_65.jpg"
53 -
54 -src_prepare() {
55 - # Ok, this has to be fixed in the tarball but I am too lazy to do it.
56 - # I will fix this once I decide to update the tarball with a new gentoo
57 - # background
58 - # Bug #404467
59 - if use branding; then
60 - sed -i -e "/xft-hintstyle/s:slight:hintslight:" \
61 - "${WORKDIR}"/${PN}.conf || die
62 - fi
63 - default
64 -}
65 -
66 -src_configure() {
67 - econf --enable-kill-on-sigterm \
68 - $(use_enable ayatana libindicator)
69 -}
70 -
71 -src_install() {
72 - default
73 -
74 - if use branding; then
75 - insinto /etc/lightdm/
76 - doins "${WORKDIR}"/${PN}.conf
77 - insinto /usr/share/lightdm/backgrounds/
78 - doins "${WORKDIR}"/${GENTOO_BG}
79 - sed -i -e \
80 - "/background/s:=.*:=/usr/share/lightdm/backgrounds/${GENTOO_BG}:" \
81 - "${D}"/etc/lightdm/${PN}.conf || die
82 - newdoc "${WORKDIR}"/README.txt README-background.txt
83 - fi
84 -}