diff options
author | Michael Palimaka <kensington@gentoo.org> | 2018-02-07 19:50:58 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2018-02-07 19:51:19 +1100 |
commit | 04329b66abf9db23372d370a5c99d540ae26538e (patch) | |
tree | d24989db75584f7005f1a909132b96493209ea31 /x11-misc | |
parent | sys-fs/udiskie: remove 0.6.2 and 0.6.4 (diff) | |
download | gentoo-04329b66abf9db23372d370a5c99d540ae26538e.tar.gz gentoo-04329b66abf9db23372d370a5c99d540ae26538e.tar.bz2 gentoo-04329b66abf9db23372d370a5c99d540ae26538e.zip |
x11-misc/evolvotron: remove 0.6.3-r1
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/evolvotron/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/evolvotron/evolvotron-0.6.3-r1.ebuild | 50 | ||||
-rw-r--r-- | x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch | 15 |
3 files changed, 0 insertions, 66 deletions
diff --git a/x11-misc/evolvotron/Manifest b/x11-misc/evolvotron/Manifest index 76d6ee1377e5..a787e0f2a0a8 100644 --- a/x11-misc/evolvotron/Manifest +++ b/x11-misc/evolvotron/Manifest @@ -1,2 +1 @@ -DIST evolvotron-0.6.3.tar.gz 182357 BLAKE2B cbd095eac272aa035bf398ce00448b693242f0ac7e4d8387d9204e6be6eb624e1639a14f0f06193b8d0f041a0aae5d401e38049f5c8c6205503015d8d845e92d SHA512 4cb5e3bda340c3444c5d59aa0569010c1845104a67996a596840aec768964a96798dc61bab7c6a77de3a4586010d8d066941795145400ad9a3fd336269e681a9 DIST evolvotron-0.7.1.tar.gz 179516 BLAKE2B b73c813fdf134e0e4c7882e06a12bc06acfb6dcdf4a38043c4c30027bf00da10df85d6877abdbd8ca6393496038ba9fa0c32a16b0f37dd14d72cc63c00a17d1c SHA512 74f48dc0881a82d999ccc910df026da80fcc46a906fe2fbb8edbae50a1fa42a3379087f00dd21fd9e5d69cee7c6fc745b80f8703b1af1ebc3a1cdb52ffbe16e9 diff --git a/x11-misc/evolvotron/evolvotron-0.6.3-r1.ebuild b/x11-misc/evolvotron/evolvotron-0.6.3-r1.ebuild deleted file mode 100644 index 9cf5f328931b..000000000000 --- a/x11-misc/evolvotron/evolvotron-0.6.3-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit qmake-utils - -DESCRIPTION="Generative art image evolver" -HOMEPAGE="https://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/qtcore:4 - dev-qt/qtgui:4 -" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${PN} - -PATCHES=( "${FILESDIR}"/${P}-gcc6.patch ) - -DOCS=( BUGS NEWS README TODO USAGE ) -HTML_DOCS=( evolvotron.html ) - -src_configure() { - eqmake4 main.pro -} - -src_compile() { - 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/* - einstalldocs -} diff --git a/x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch b/x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch deleted file mode 100644 index 709d61b29a6a..000000000000 --- a/x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch +++ /dev/null @@ -1,15 +0,0 @@ -Description: Fix compilation with GCC6 by making implict conversion to bool explicit -Author: Axel Beckert <abe@debian.org> -Bug-Debian: https://bugs.debian.org/811660 - ---- a/libevolvotron/mutatable_image_computer.h -+++ b/libevolvotron/mutatable_image_computer.h -@@ -193,7 +193,7 @@ - //! Indicate whether computation us taking place (only intended for counting outstanding threads). - bool active() const - { -- return _task; -+ return (bool)_task; - } - }; - |