blob: e1d063b277c1f72edf2e510bb851985b308cfa32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
KDE_MINIMAL="4.8"
KDE_SCM="git"
EGIT_REPONAME="${PN/-kde/}"
KDE_LINGUAS="cs da de el es et fi fr ga hu it ja km lt nds nl pl pt pt_BR ro sk sv uk"
inherit kde4-base
DESCRIPTION="LightDM KDE greeter"
HOMEPAGE="https://projects.kde.org/projects/playground/base/lightdm"
[[ ${PV} = 9999* ]] || SRC_URI="mirror://kde/unstable/${PN}/src/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="amd64 ~ppc x86"
SLOT="4"
IUSE="debug"
DEPEND="x11-libs/libX11
dev-qt/qtdeclarative:4
>=x11-misc/lightdm-1.3.2[qt4]
"
RDEPEND="${DEPEND}
app-eselect/eselect-lightdm"
S=${WORKDIR}/${PN/-kde}-${PV}
PATCHES=( "${FILESDIR}/${P}-lightdm-1.7.patch" )
pkg_postinst() {
# Make sure to have a greeter properly configured
eselect lightdm set lightdm-kde-greeter --use-old
}
pkg_postrm() {
eselect lightdm set 1 # hope some other greeter is installed
}
|