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 A84321382C5 for ; Tue, 17 Apr 2018 20:27:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63A87E0A9B; Tue, 17 Apr 2018 20:27:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3CED8E0A9B for ; Tue, 17 Apr 2018 20:27:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 360DC335C5A for ; Tue, 17 Apr 2018 20:27:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42979291 for ; Tue, 17 Apr 2018 20:27:51 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1523996799.7fc0c83cd3928f7498de944ee6dd4107c220b2a7.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/quat/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/quat/quat-1.20.ebuild X-VCS-Directories: media-gfx/quat/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 7fc0c83cd3928f7498de944ee6dd4107c220b2a7 X-VCS-Branch: master Date: Tue, 17 Apr 2018 20:27:51 +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-Archives-Salt: e57216ee-ccf8-414f-83a9-1834613d1d10 X-Archives-Hash: c21b1e1f8c1b0ad77fe0e1ed9a43f9d4 commit: 7fc0c83cd3928f7498de944ee6dd4107c220b2a7 Author: Harri Nieminen gmail com> AuthorDate: Tue Apr 17 08:39:42 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Apr 17 20:26:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fc0c83c media-gfx/quat: Clean up old Package-Manager: Portage-2.3.29, Repoman-2.3.9 media-gfx/quat/quat-1.20.ebuild | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/media-gfx/quat/quat-1.20.ebuild b/media-gfx/quat/quat-1.20.ebuild deleted file mode 100644 index 275fd898170..00000000000 --- a/media-gfx/quat/quat-1.20.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="A 3D quaternionic fractal generator" -HOMEPAGE="http://www.physcip.uni-stuttgart.de/phy11733/quat_e.html" -SRC_URI="http://www.physcip.uni-stuttgart.de/phy11733/download/quat-1.20.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="X debug" - -DEPEND="X? ( =x11-libs/fltk-1* - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXft - ) - >=sys-libs/zlib-1.1.4" -RDEPEND="" - -src_compile() { - export FLUID="/usr/bin/fluid" # needed because configure tries an invalid option - econf \ - `use_enable X gui` \ - `use_enable debug` \ - `use_enable debug prof` \ - || die "configure failure" - emake || die "make failure" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failure" - dodoc AUTHORS ChangeLog NEWS README -}