blob: c0b96f5f839a236d5d55e3caef980aebeb9c10bf (
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdmthemegenerator/kdmthemegenerator-0.8.ebuild,v 1.4 2014/03/20 22:09:59 johu Exp $
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="
$(add_kdebase_dep kdm)
"
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
}
|