blob: bfeee4629901532990a4e486eae83cacdf28f9e2 (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/fraqtive-0.4.5.ebuild,v 1.3 2013/01/30 20:50:19 jer Exp $
EAPI=4
inherit eutils gnome2-utils qt4-r2
DESCRIPTION="an open source, multi-platform generator of the Mandelbrot family fractals"
HOMEPAGE="http://fraqtive.mimec.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="sse2"
RDEPEND="x11-libs/qt-core:4
x11-libs/qt-gui:4
x11-libs/qt-opengl:4"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-qt-4.8.patch
local conf="release"
if use sse2; then
conf="$conf sse2"
else
conf="$conf no-sse2"
fi
echo "CONFIG += $conf" > "${S}"/config.pri
echo "PREFIX = ${EPREFIX}/usr" >> "${S}"/config.pri
# Don't strip wrt #252096
echo "QMAKE_STRIP =" >> "${S}"/config.pri
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|