blob: 6104e7b5a97b9d96aeaea2a505d27db4e861ebc6 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kdissert/kdissert-0.3.5.ebuild,v 1.2 2005/02/25 01:48:49 weeve Exp $
inherit kde
DESCRIPTION="KDissert - a mindmapping-like tool"
HOMEPAGE="http://www.freehackers.org/~tnagy/kdissert/index.html"
SRC_URI="http://www.freehackers.org/~tnagy/kdissert/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc"
IUSE=""
DEPEND="dev-util/scons"
need-kde 3.2
# rotten Makefile stuff, can't use kde.eclass
src_compile() {
./configure --prefix=${D}/usr || configure failed
emake || emake failed
}
src_install() {
einstall || einstall failed
}
|