Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/fraqtive: fraqtive-0.4.8.ebuild ChangeLog fraqtive-0.4.6.ebuild
Date: Thu, 05 Feb 2015 09:38:34
Message-Id: 20150205093829.C480411194@oystercatcher.gentoo.org
1 jer 15/02/05 09:38:29
2
3 Modified: ChangeLog
4 Added: fraqtive-0.4.8.ebuild
5 Removed: fraqtive-0.4.6.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.17 x11-misc/fraqtive/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fraqtive/ChangeLog?rev=1.17&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fraqtive/ChangeLog?rev=1.17&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fraqtive/ChangeLog?r1=1.16&r2=1.17
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/ChangeLog,v
21 retrieving revision 1.16
22 retrieving revision 1.17
23 diff -u -r1.16 -r1.17
24 --- ChangeLog 28 Jan 2015 22:22:41 -0000 1.16
25 +++ ChangeLog 5 Feb 2015 09:38:29 -0000 1.17
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-misc/fraqtive
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/ChangeLog,v 1.16 2015/01/28 22:22:41 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/ChangeLog,v 1.17 2015/02/05 09:38:29 jer Exp $
31 +
32 +*fraqtive-0.4.8 (05 Feb 2015)
33 +
34 + 05 Feb 2015; Jeroen Roovers <jer@g.o> -fraqtive-0.4.6.ebuild,
35 + +fraqtive-0.4.8.ebuild, -files/fraqtive-0.4.5-qt-4.8.patch:
36 + Version bump.
37
38 28 Jan 2015; Michał Górny <mgorny@g.o> fraqtive-0.4.6.ebuild,
39 fraqtive-0.4.7.ebuild:
40
41
42
43 1.1 x11-misc/fraqtive/fraqtive-0.4.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fraqtive/fraqtive-0.4.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fraqtive/fraqtive-0.4.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: fraqtive-0.4.8.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/fraqtive/fraqtive-0.4.8.ebuild,v 1.1 2015/02/05 09:38:29 jer Exp $
53
54 EAPI=5
55 inherit eutils gnome2-utils qmake-utils toolchain-funcs
56
57 DESCRIPTION="an open source, multi-platform generator of the Mandelbrot family fractals"
58 HOMEPAGE="http://fraqtive.mimec.org/"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="qt5 cpu_flags_x86_sse2"
65
66 RDEPEND="
67 !qt5? (
68 dev-qt/qtcore:4
69 dev-qt/qtgui:4
70 dev-qt/qtopengl:4
71 )
72 qt5? (
73 dev-qt/qtcore:5
74 dev-qt/qtgui:5
75 dev-qt/qtopengl:5
76 )
77 virtual/glu
78 "
79 DEPEND="
80 ${RDEPEND}
81 virtual/pkgconfig
82 "
83
84 src_configure() {
85 tc-export PKG_CONFIG
86 sed -i -e "s|-lGLU|$( ${PKG_CONFIG} --libs glu )|g" src/src.pro || die
87 local conf="release"
88
89 if use cpu_flags_x86_sse2; then
90 conf="$conf sse2"
91 else
92 conf="$conf no-sse2"
93 fi
94
95 echo "CONFIG += $conf" > "${S}"/config.pri
96 echo "PREFIX = ${EPREFIX}/usr" >> "${S}"/config.pri
97 # Don't strip wrt #252096
98 echo "QMAKE_STRIP =" >> "${S}"/config.pri
99
100 if use qt5; then
101 eqmake5
102 else
103 eqmake4
104 fi
105 }
106
107 src_install() {
108 emake INSTALL_ROOT="${D}" install
109 }
110
111 pkg_preinst() {
112 gnome2_icon_savelist
113 }
114
115 pkg_postinst() {
116 gnome2_icon_cache_update
117 }
118
119 pkg_postrm() {
120 gnome2_icon_cache_update
121 }