You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-misc/fraqtive/fraqtive-0.4.5.ebuild

51 lines
1.0 KiB

# 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.4 2013/03/02 23:48:22 hwoarang 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="dev-qt/qtcore:4
dev-qt/qtgui:4
dev-qt/qtopengl: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
}