blob: 84209ec22119fde99fd44c007018adac0bcb4bc4 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/karamba/karamba-0.17-r2.ebuild,v 1.4 2005/11/02 19:44:18 nelchael Exp $
inherit kde eutils
DESCRIPTION="A KDE program that displays a lot of various information right on your desktop."
HOMEPAGE="http://www.efd.lth.se/~d98hk/karamba/"
SRC_URI="http://www.efd.lth.se/~d98hk/karamba/src/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ppc x86"
IUSE=""
need-kde 3.1
src_unpack() {
kde_src_unpack
epatch ${FILESDIR}/${P}-configure-arts.patch
}
src_compile() {
local myconf="--enable-libsuffix="
kde_src_compile all
}
src_install () {
emake DESTDIR=${D} install || die "install failed"
dodir /usr/share/doc/${P} /usr/share/karamba/themes /usr/share/karamba/bin
mv ${D}/usr/share/doc/* ${D}/usr/share/doc/${P}
keepdir /usr/share/karamba/themes/.keep
keepdir /usr/share/karamba/bin/.keep
dodir /etc/env.d
cp ${FILESDIR}/karamba-env ${D}/etc/env.d/99karamba
}
|