blob: a895e39cbe5dd3bb8e21552371800d443e4ae6fd (
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
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="A Minimal, Configurable, Single-User GTK3 LightDM Greeter"
HOMEPAGE="https://github.com/prikhi/lightdm-mini-greeter"
SRC_URI="https://github.com/prikhi/lightdm-mini-greeter/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="virtual/pkgconfig"
RDEPEND="
>=x11-libs/gtk+-3.14:3
>=x11-misc/lightdm-1.12
"
DEPEND="${RDEPEND}"
DOCS="CHANGELOG.md README.md"
src_prepare() {
eapply_user
eautoreconf
}
|