summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2013-01-30 20:50:19 +0000
committerJeroen Roovers <jer@gentoo.org>2013-01-30 20:50:19 +0000
commit9d347226bd5e1a4b66df564511f9e85a3009af11 (patch)
tree7f180bbc123a4687baf4e2e2a23449fed89b2861 /x11-misc/fraqtive
parentVersion bump (diff)
downloadgentoo-2-9d347226bd5e1a4b66df564511f9e85a3009af11.tar.gz
gentoo-2-9d347226bd5e1a4b66df564511f9e85a3009af11.tar.bz2
gentoo-2-9d347226bd5e1a4b66df564511f9e85a3009af11.zip
Version bump.
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-misc/fraqtive')
-rw-r--r--x11-misc/fraqtive/ChangeLog10
-rw-r--r--x11-misc/fraqtive/fraqtive-0.4.5.ebuild6
-rw-r--r--x11-misc/fraqtive/fraqtive-0.4.6.ebuild51
3 files changed, 62 insertions, 5 deletions
diff --git a/x11-misc/fraqtive/ChangeLog b/x11-misc/fraqtive/ChangeLog
index d573602504fd..0b66052661fb 100644
--- a/x11-misc/fraqtive/ChangeLog
+++ b/x11-misc/fraqtive/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/fraqtive
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/ChangeLog,v 1.11 2012/07/21 18:53:24 hasufell Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/ChangeLog,v 1.12 2013/01/30 20:50:19 jer Exp $
+
+*fraqtive-0.4.6 (30 Jan 2013)
+
+ 30 Jan 2013; Jeroen Roovers <jer@gentoo.org> fraqtive-0.4.5.ebuild,
+ +fraqtive-0.4.6.ebuild:
+ Version bump.
21 Jul 2012; Julian Ospald <hasufell@gentoo.org> fraqtive-0.4.5.ebuild,
+files/fraqtive-0.4.5-qt-4.8.patch:
diff --git a/x11-misc/fraqtive/fraqtive-0.4.5.ebuild b/x11-misc/fraqtive/fraqtive-0.4.5.ebuild
index d46742f85c2b..bfeee4629901 100644
--- a/x11-misc/fraqtive/fraqtive-0.4.5.ebuild
+++ b/x11-misc/fraqtive/fraqtive-0.4.5.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2012 Gentoo Foundation
+# 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.2 2012/07/21 18:53:25 hasufell Exp $
+# $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="Fraqtive is a KDE-based program for interactively drawing Mandelbrot and Julia fractals"
+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"
diff --git a/x11-misc/fraqtive/fraqtive-0.4.6.ebuild b/x11-misc/fraqtive/fraqtive-0.4.6.ebuild
new file mode 100644
index 000000000000..f3906de822e1
--- /dev/null
+++ b/x11-misc/fraqtive/fraqtive-0.4.6.ebuild
@@ -0,0 +1,51 @@
+# 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.6.ebuild,v 1.1 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"
+
+DEPEND="
+ x11-libs/qt-core:4
+ x11-libs/qt-gui:4
+ x11-libs/qt-opengl:4
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ 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
+
+ qt4-r2_src_configure
+}
+
+pkg_preinst() {
+ gnome2_icon_savelist
+}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}