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 D83E1138334 for ; Fri, 2 Aug 2019 11:36:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B911E069C; Fri, 2 Aug 2019 11:36:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 ED830E069C for ; Fri, 2 Aug 2019 11:36:32 +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 154203491CD for ; Fri, 2 Aug 2019 11:36:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA521738 for ; Fri, 2 Aug 2019 11:36:30 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1564745778.e59ffb3ff77ebc2f4f9adadd3a8afb1b202368c8.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libggi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libggi/libggi-2.2.2.ebuild X-VCS-Directories: media-libs/libggi/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e59ffb3ff77ebc2f4f9adadd3a8afb1b202368c8 X-VCS-Branch: master Date: Fri, 2 Aug 2019 11:36:30 +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: cfb17d8b-22bf-4781-8109-1939d3ddf8bc X-Archives-Hash: 79791d8ce424e3c41bcdfd02556667d6 commit: e59ffb3ff77ebc2f4f9adadd3a8afb1b202368c8 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Aug 2 11:36:18 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 2 11:36:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e59ffb3f media-libs/libggi: Drop 2.2.2 (r0) Closes: https://bugs.gentoo.org/669354 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libggi/libggi-2.2.2.ebuild | 61 ----------------------------------- 1 file changed, 61 deletions(-) diff --git a/media-libs/libggi/libggi-2.2.2.ebuild b/media-libs/libggi/libggi-2.2.2.ebuild deleted file mode 100644 index 521bb6974d0..00000000000 --- a/media-libs/libggi/libggi-2.2.2.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="Provides an opaque interface to the display's acceleration function" -HOMEPAGE="https://ibiblio.org/ggicore/packages/libggi.html" -SRC_URI="mirror://sourceforge/ggi/${P}.src.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="X aalib svga fbcon directfb 3dfx debug cpu_flags_x86_mmx vis" - -RDEPEND=">=media-libs/libgii-1.0.2 - X? ( x11-libs/libXt - x11-libs/libXxf86dga - x11-libs/libXxf86vm - x11-libs/libXt ) - svga? ( >=media-libs/svgalib-1.4.2 ) - aalib? ( >=media-libs/aalib-1.2-r1 )" -DEPEND="${RDEPEND} - X? ( x11-base/xorg-proto )" - -src_compile() { - local myconf="" - - use svga || myconf="${myconf} --disable-svga --disable-vgagl" - - if use !fbcon && use !directfb; then - myconf="${myconf} --disable-fbdev --disable-directfb" - elif use directfb; then - myconf="${myconf} --enable-fbdev --enable-directfb" - else - myconf="${myconf} --enable-fbdev" - fi - - if use amd64 || use ppc64 || use ia64 ; then - myconf="${myconf} --enable-64bitc" - else - myconf="${myconf} --disable-64bitc" - fi - - econf $(use_enable 3dfx glide) \ - $(use_enable aalib aa) \ - $(use_enable debug) \ - $(use_enable cpu_flags_x86_mmx mmx) \ - $(use_enable vis) \ - $(use_with X x) \ - $(use_enable X x) \ - ${myconf} - emake || die -} - -src_install () { - emake DESTDIR="${D}" install || die - - dodoc ChangeLog* FAQ NEWS README - docinto txt - dodoc doc/*.txt -}