summaryrefslogtreecommitdiff
blob: 69556332f1257dd9161b9ceb3b59f30e162d255a (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit kde

DESCRIPTION="Fraqtive is a KDE-based program for interactively drawing Mandelbrot and Julia fractals"
HOMEPAGE="http://fraqtive.mimec.org/"
SRC_URI="http://fraqtive.mimec.org/files/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
# opengl useflag removed because fraqtive does not build without it
IUSE="arts"

need-kde 3.3

DEPEND="
	arts? ( kde-base/arts )
	"
RDEPEND="${DEPEND}"


src_unpack() {
	unpack ${A}
	cd "${S}"
}

src_compile() {
	local myconf="
		$(use_with arts) \
	"
	kde_src_compile || die "kde_src_compile failed"
}