blob: 3bab61c775917982ba2544e628941521d6027049 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/ksplash-engine-moodin/ksplash-engine-moodin-0.4.2.ebuild,v 1.1 2006/05/30 20:11:52 jokey Exp $
inherit kde
MY_P=${P/moodin-0/moodin_0}
S=${WORKDIR}/moodin
DESCRIPTION="Splash Screen Engine for KDE - Heavily customizable engine for various types of themes"
HOMEPAGE="http://www.kde-look.org/content/show.php?content=25705"
SRC_URI="http://moodwrod.com/files/${MY_P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="arts"
need-kde 3.4
src_compile() {
econf $(use_with arts) || die "econf failed"
emake || die "emake failed"
}
|