Gentoo Archives: gentoo-commits

From: "Timothy Redaelli (drizzt)" <drizzt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/fraqtive: ChangeLog fraqtive-0.4.4.ebuild
Date: Mon, 02 Feb 2009 16:59:40
Message-Id: E1LU294-0005nH-QW@stork.gentoo.org
1 drizzt 09/02/02 16:59:38
2
3 Modified: ChangeLog
4 Added: fraqtive-0.4.4.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 x11-misc/fraqtive/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fraqtive/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fraqtive/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fraqtive/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 14 Oct 2008 12:33:05 -0000 1.5
23 +++ ChangeLog 2 Feb 2009 16:59:38 -0000 1.6
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/fraqtive
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/ChangeLog,v 1.5 2008/10/14 12:33:05 flameeyes Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/ChangeLog,v 1.6 2009/02/02 16:59:38 drizzt Exp $
30 +
31 +*fraqtive-0.4.4 (02 Feb 2009)
32 +
33 + 02 Feb 2009; <drizzt@g.o> +fraqtive-0.4.4.ebuild:
34 + Version bump
35
36 14 Oct 2008; Diego Pettenò <flameeyes@g.o> fraqtive-0.4.3.ebuild:
37 Fix dependencies.
38
39
40
41 1.1 x11-misc/fraqtive/fraqtive-0.4.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fraqtive/fraqtive-0.4.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/fraqtive/fraqtive-0.4.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: fraqtive-0.4.4.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/fraqtive-0.4.4.ebuild,v 1.1 2009/02/02 16:59:38 drizzt Exp $
51
52 EAPI=1
53
54 inherit qt4
55
56 DESCRIPTION="Fraqtive is a KDE-based program for interactively drawing Mandelbrot and Julia fractals"
57 HOMEPAGE="http://fraqtive.mimec.org/"
58 SRC_URI="mirror://sourceforge/fraqtive/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="sse2"
64
65 RDEPEND="|| ( ( x11-libs/qt-core
66 x11-libs/qt-gui
67 x11-libs/qt-opengl )
68 <x11-libs/qt-4.4:4 )"
69 DEPEND="${RDEPEND}"
70
71 QT4_BUILT_WITH_USE_CHECK="opengl"
72
73 src_unpack() {
74 local conf="release"
75
76 if use sse2; then
77 conf="$conf sse2"
78 else
79 conf="$conf no-sse2"
80 fi
81
82 unpack ${A}
83
84 echo "CONFIG += $conf" > "${S}"/config.pri
85 echo "PREFIX = /usr" >> "${S}"/config.pri
86 }
87
88 src_compile() {
89 eqmake4
90 emake || die "make failed"
91 }
92
93 src_install() {
94 make install INSTALL_ROOT="${D}" || die "install failed"
95 }