blob: 006dd4422601f0e7f858a036cd87697fb232283c (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit kde4-base
MY_P=KdmThemeGenerator
DESCRIPTION="Generates kdm theme from your current plasma theme and wallpaper"
HOMEPAGE="http://kde-apps.org/content/show.php/Kdm+theme+generator?content=102760"
SRC_URI="http://kde-apps.org/CONTENT/content-files/102760-${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND="
kde-plasma/kdm:4
"
S=${WORKDIR}/${MY_P}
src_install() {
kde4-base_src_install
exeinto /usr/share/${MY_P}
doexe copyFromUserToSystem.sh || die
insinto /usr/share/${MY_P}
doins input-shadow.svg || die
}
|