From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0464113835A for ; Wed, 30 Sep 2020 08:58:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A909E0ABD; Wed, 30 Sep 2020 08:58:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0093EE0ABD for ; Wed, 30 Sep 2020 08:58:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F38833BF21 for ; Wed, 30 Sep 2020 08:58:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BDF5380 for ; Wed, 30 Sep 2020 08:58:19 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1601456295.b6d5b363e935265b4ac42d051b72823b6b8e588c.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/evolvotron/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/evolvotron/evolvotron-0.7.1.ebuild X-VCS-Directories: x11-misc/evolvotron/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: b6d5b363e935265b4ac42d051b72823b6b8e588c X-VCS-Branch: master Date: Wed, 30 Sep 2020 08:58:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a3b3624c-fb8d-489d-a486-082e0f0546c9 X-Archives-Hash: ec0f469444a281ffd44ba24afa72ca3e commit: b6d5b363e935265b4ac42d051b72823b6b8e588c Author: Jeroen Roovers gentoo org> AuthorDate: Wed Sep 30 08:55:37 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Sep 30 08:58:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6d5b363 x11-misc/evolvotron: Old Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Jeroen Roovers gentoo.org> x11-misc/evolvotron/evolvotron-0.7.1.ebuild | 55 ----------------------------- 1 file changed, 55 deletions(-) diff --git a/x11-misc/evolvotron/evolvotron-0.7.1.ebuild b/x11-misc/evolvotron/evolvotron-0.7.1.ebuild deleted file mode 100644 index 62f289f61de..00000000000 --- a/x11-misc/evolvotron/evolvotron-0.7.1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit qmake-utils - -DESCRIPTION="Generative art image evolver" -HOMEPAGE=" - http://www.bottlenose.net/share/evolvotron/index.htm - https://sourceforge.net/projects/evolvotron/ -" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" - -RDEPEND=" - dev-libs/boost:= - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 -" -DEPEND="${RDEPEND}" - -DOCS=( - BUGS NEWS README TODO USAGE -) -HTML_DOCS=( - evolvotron.html -) -S=${WORKDIR}/${PN} - -src_configure() { - eqmake5 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 -}