summaryrefslogtreecommitdiff
blob: a037bbd6521ae8a8459a40e912e6e83673343b59 (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
40
41
42
43
44
45
46
47
48
49
50
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/fraqtive-0.4.4.ebuild,v 1.2 2009/02/03 20:50:18 drizzt Exp $

EAPI=1

inherit qt4

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

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="sse2"

RDEPEND="|| ( ( x11-libs/qt-core
				x11-libs/qt-gui
				x11-libs/qt-opengl )
				<x11-libs/qt-4.4:4 )"
DEPEND="${RDEPEND}"

QT4_BUILT_WITH_USE_CHECK="opengl"

src_unpack() {
	local conf="release"

	if use sse2; then
		conf="$conf sse2"
	else
		conf="$conf no-sse2"
	fi

	unpack ${A}

	echo "CONFIG += $conf" > "${S}"/config.pri
	echo "PREFIX = /usr" >> "${S}"/config.pri
	# Don't strip wrt #252096
	echo "QMAKE_STRIP =" >> "${S}"/config.pri
}

src_compile() {
	eqmake4
	emake || die "make failed"
}

src_install() {
	make install INSTALL_ROOT="${D}" || die "install failed"
}