Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/evolvotron/
Date: Wed, 30 Sep 2020 08:58:22
Message-Id: 1601456295.b6d5b363e935265b4ac42d051b72823b6b8e588c.jer@gentoo
1 commit: b6d5b363e935265b4ac42d051b72823b6b8e588c
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 30 08:55:37 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 30 08:58:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6d5b363
7
8 x11-misc/evolvotron: Old
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 x11-misc/evolvotron/evolvotron-0.7.1.ebuild | 55 -----------------------------
14 1 file changed, 55 deletions(-)
15
16 diff --git a/x11-misc/evolvotron/evolvotron-0.7.1.ebuild b/x11-misc/evolvotron/evolvotron-0.7.1.ebuild
17 deleted file mode 100644
18 index 62f289f61de..00000000000
19 --- a/x11-misc/evolvotron/evolvotron-0.7.1.ebuild
20 +++ /dev/null
21 @@ -1,55 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit qmake-utils
27 -
28 -DESCRIPTION="Generative art image evolver"
29 -HOMEPAGE="
30 - http://www.bottlenose.net/share/evolvotron/index.htm
31 - https://sourceforge.net/projects/evolvotron/
32 -"
33 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~ppc x86"
38 -
39 -RDEPEND="
40 - dev-libs/boost:=
41 - dev-qt/qtcore:5
42 - dev-qt/qtgui:5
43 - dev-qt/qtwidgets:5
44 - dev-qt/qtxml:5
45 -"
46 -DEPEND="${RDEPEND}"
47 -
48 -DOCS=(
49 - BUGS NEWS README TODO USAGE
50 -)
51 -HTML_DOCS=(
52 - evolvotron.html
53 -)
54 -S=${WORKDIR}/${PN}
55 -
56 -src_configure() {
57 - eqmake5 main.pro
58 -}
59 -
60 -src_compile() {
61 - local etsubdir
62 - for etsubdir in \
63 - libfunction libevolvotron evolvotron evolvotron_render evolvotron_mutate
64 - do
65 - emake sub-${etsubdir}
66 - done
67 -}
68 -
69 -src_install() {
70 - local bin
71 - for bin in ${PN}{,_mutate,_render}; do
72 - dobin ${bin}/${bin}
73 - done
74 - doman man/man1/*
75 - einstalldocs
76 -}