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/evolvotron: evolvotron-0.6.3.ebuild ChangeLog
Date: Tue, 27 Aug 2013 20:44:30
Message-Id: 20130827204426.BDD162004C@flycatcher.gentoo.org
1 jer 13/08/27 20:44:26
2
3 Modified: ChangeLog
4 Added: evolvotron-0.6.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.26 x11-misc/evolvotron/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/evolvotron/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/evolvotron/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/evolvotron/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 2 Mar 2013 23:47:56 -0000 1.25
24 +++ ChangeLog 27 Aug 2013 20:44:26 -0000 1.26
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/evolvotron
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/ChangeLog,v 1.25 2013/03/02 23:47:56 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/ChangeLog,v 1.26 2013/08/27 20:44:26 jer Exp $
30 +
31 +*evolvotron-0.6.3 (27 Aug 2013)
32 +
33 + 27 Aug 2013; Jeroen Roovers <jer@g.o> +evolvotron-0.6.3.ebuild:
34 + Version bump.
35
36 02 Mar 2013; Markos Chandras <hwoarang@g.o> evolvotron-0.6.1.ebuild,
37 evolvotron-0.6.2.ebuild:
38
39
40
41 1.1 x11-misc/evolvotron/evolvotron-0.6.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/evolvotron/evolvotron-0.6.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/evolvotron/evolvotron-0.6.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: evolvotron-0.6.3.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/evolvotron-0.6.3.ebuild,v 1.1 2013/08/27 20:44:26 jer Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_{6,7} )
54 inherit python-r1 qt4-r2
55
56 DESCRIPTION="Generative art image evolver"
57 HOMEPAGE="http://sourceforge.net/projects/evolvotron/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
63 IUSE=""
64
65 RDEPEND="
66 dev-libs/boost
67 dev-qt/qtgui:4
68 "
69 DEPEND="
70 ${DEPEND}
71 ${PYTHON_DEPS}
72 "
73
74 S=${WORKDIR}/${PN}
75
76 src_prepare() {
77 sed -i -e '1s|python|&2|g' text_to_markup.py || die
78 }
79
80 src_configure() {
81 eqmake4 main.pro
82 }
83
84 src_compile() {
85 ./text_to_markup.py -html < USAGE > evolvotron.html
86 ./text_to_markup.py -qml -s < USAGE > libevolvotron/usage_text.h
87
88 local etsubdir
89 for etsubdir in \
90 libfunction libevolvotron evolvotron evolvotron_render evolvotron_mutate
91 do
92 emake sub-${etsubdir}
93 done
94 }
95
96 src_install() {
97 local bin
98 for bin in ${PN}{,_mutate,_render}; do
99 dobin ${bin}/${bin}
100 done
101 doman man/man1/*
102 dodoc BUGS NEWS README TODO USAGE
103 dohtml *.html
104 }