diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-08-27 20:44:26 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-08-27 20:44:26 +0000 |
commit | 44241c83dbb5768f00f9f4f082742faa206135ee (patch) | |
tree | 0d3c97a6a8573ec8f80b9ef84d89faae86e06118 /x11-misc/evolvotron | |
parent | remove latex2html masks (diff) | |
download | gentoo-2-44241c83dbb5768f00f9f4f082742faa206135ee.tar.gz gentoo-2-44241c83dbb5768f00f9f4f082742faa206135ee.tar.bz2 gentoo-2-44241c83dbb5768f00f9f4f082742faa206135ee.zip |
Version bump.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-misc/evolvotron')
-rw-r--r-- | x11-misc/evolvotron/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/evolvotron/evolvotron-0.6.3.ebuild | 57 |
2 files changed, 63 insertions, 1 deletions
diff --git a/x11-misc/evolvotron/ChangeLog b/x11-misc/evolvotron/ChangeLog index 9cdcdd7ca1b5..620b9f370f65 100644 --- a/x11-misc/evolvotron/ChangeLog +++ b/x11-misc/evolvotron/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/evolvotron # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/ChangeLog,v 1.25 2013/03/02 23:47:56 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/ChangeLog,v 1.26 2013/08/27 20:44:26 jer Exp $ + +*evolvotron-0.6.3 (27 Aug 2013) + + 27 Aug 2013; Jeroen Roovers <jer@gentoo.org> +evolvotron-0.6.3.ebuild: + Version bump. 02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> evolvotron-0.6.1.ebuild, evolvotron-0.6.2.ebuild: diff --git a/x11-misc/evolvotron/evolvotron-0.6.3.ebuild b/x11-misc/evolvotron/evolvotron-0.6.3.ebuild new file mode 100644 index 000000000000..2a1e560b16f8 --- /dev/null +++ b/x11-misc/evolvotron/evolvotron-0.6.3.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/evolvotron-0.6.3.ebuild,v 1.1 2013/08/27 20:44:26 jer Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_{6,7} ) +inherit python-r1 qt4-r2 + +DESCRIPTION="Generative art image evolver" +HOMEPAGE="http://sourceforge.net/projects/evolvotron/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=" + dev-libs/boost + dev-qt/qtgui:4 +" +DEPEND=" + ${DEPEND} + ${PYTHON_DEPS} +" + +S=${WORKDIR}/${PN} + +src_prepare() { + sed -i -e '1s|python|&2|g' text_to_markup.py || die +} + +src_configure() { + eqmake4 main.pro +} + +src_compile() { + ./text_to_markup.py -html < USAGE > evolvotron.html + ./text_to_markup.py -qml -s < USAGE > libevolvotron/usage_text.h + + local etsubdir + for etsubdir in \ + libfunction libevolvotron evolvotron evolvotron_render evolvotron_mutate + do + emake sub-${etsubdir} + done +} + +src_install() { + local bin + for bin in ${PN}{,_mutate,_render}; do + dobin ${bin}/${bin} + done + doman man/man1/* + dodoc BUGS NEWS README TODO USAGE + dohtml *.html +} |