diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-20 19:57:52 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-20 19:57:52 +0000 |
commit | 9a3f1db87f389a5814a22ad98bc327d76cde99ef (patch) | |
tree | 177ddcdc5a4eb42ac1c45100244e8d8ce33fba6d /x11-misc/evolvotron | |
parent | Touch up code a bit and add support for /etc/ld.so.conf.d/. (diff) | |
download | gentoo-2-9a3f1db87f389a5814a22ad98bc327d76cde99ef.tar.gz gentoo-2-9a3f1db87f389a5814a22ad98bc327d76cde99ef.tar.bz2 gentoo-2-9a3f1db87f389a5814a22ad98bc327d76cde99ef.zip |
Version bump.
(Portage version: 2.2_rc59/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/evolvotron')
-rw-r--r-- | x11-misc/evolvotron/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/evolvotron/evolvotron-0.6.1.ebuild | 42 |
2 files changed, 50 insertions, 2 deletions
diff --git a/x11-misc/evolvotron/ChangeLog b/x11-misc/evolvotron/ChangeLog index d10fe0377ede..37001fc6a760 100644 --- a/x11-misc/evolvotron/ChangeLog +++ b/x11-misc/evolvotron/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/evolvotron -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/ChangeLog,v 1.19 2009/05/06 16:22:05 armin76 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/ChangeLog,v 1.20 2009/12/20 19:57:52 ssuominen Exp $ + +*evolvotron-0.6.1 (20 Dec 2009) + + 20 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> + +evolvotron-0.6.1.ebuild: + Version bump. 06 May 2009; Raúl Porcel <armin76@gentoo.org> evolvotron-0.5.1.ebuild: x86 stable wrt #268743 diff --git a/x11-misc/evolvotron/evolvotron-0.6.1.ebuild b/x11-misc/evolvotron/evolvotron-0.6.1.ebuild new file mode 100644 index 000000000000..243f74d069b0 --- /dev/null +++ b/x11-misc/evolvotron/evolvotron-0.6.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/evolvotron/evolvotron-0.6.1.ebuild,v 1.1 2009/12/20 19:57:52 ssuominen Exp $ + +EAPI=2 +inherit qt4 + +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="x11-libs/qt-gui:4" +DEPEND="${RDEPEND} + dev-lang/python + dev-libs/boost" + +S=${WORKDIR}/${PN} + +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 + emake -j1 || die +} + +src_install() { + for bin in ${PN}{,_mutate,_render}; do + dobin ${bin}/${bin} || die + done + + doman man/man1/* + dodoc BUGS CHANGES README TODO USAGE + dohtml *.html +} |