blob: 1bb6ec5849dec3efcbdcc91c476265e865c9933d (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/karamba/karamba-0.17-r1.ebuild,v 1.8 2004/03/14 17:30:44 mr_bones_ Exp $
inherit kde
need-kde 3
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
newdepend ">=kde-base/kdelibs-3.1
>=sys-apps/portage-2.0.26"
src_compile() {
local myconf="--enable-libsuffix="
kde_src_compile all
}
src_install () {
einstall
dodir /usr/share/doc/${P} /usr/share/karamba/themes /usr/share/karamba/bin
mv ${D}/usr/share/doc/* ${D}/usr/share/doc/${P}
> ${D}/usr/share/karamba/themes/.keep
> ${D}/usr/share/karamba/bin/.keep
dodir /etc/env.d
cp ${FILESDIR}/karamba-env ${D}/etc/env.d/99karamba
}
|