blob: 8aa83d7b2f73556b97aee05ab1d761633e098f43 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/superkaramba/superkaramba-0.36.ebuild,v 1.1 2005/05/14 14:14:00 greg_g Exp $
inherit kde
DESCRIPTION="A tool to create interactive applets for the KDE desktop."
HOMEPAGE="http://netdragon.sourceforge.net/"
SRC_URI="mirror://sourceforge/netdragon/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
IUSE="doc xmms"
DEPEND="dev-lang/python
xmms? ( media-sound/xmms )"
need-kde 3.2
src_compile() {
# hack, until the configure script supports a switch
use xmms || export ac_cv_have_xmms=no
kde_src_compile
}
src_install() {
kde_src_install
newenvd ${FILESDIR}/karamba-env 99karamba
keepdir /usr/share/karamba/themes /usr/share/karamba/bin
if use doc; then
insinto /usr/share/doc/${PF}
doins -r ${S}/examples
fi
}
|