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 4F1EB138336 for ; Sun, 7 Oct 2018 14:02:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01A3FE09BB; Sun, 7 Oct 2018 14:02:35 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C7F21E09BB for ; Sun, 7 Oct 2018 14:02:34 +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 EB2B4335CE4 for ; Sun, 7 Oct 2018 14:02:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0D8542D for ; Sun, 7 Oct 2018 14:02:29 +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: <1538920824.a3409020dbd93c14126afdcb62248113bed588a7.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-r1.ebuild X-VCS-Directories: media-libs/libggi/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a3409020dbd93c14126afdcb62248113bed588a7 X-VCS-Branch: master Date: Sun, 7 Oct 2018 14:02:29 +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: 7d3fb16d-bc33-4665-ad51-11668b74d415 X-Archives-Hash: b99ee048fb083959f1b62e15127a2878 commit: a3409020dbd93c14126afdcb62248113bed588a7 Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri Oct 5 19:06:59 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 7 14:00:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3409020 media-libs/libggi: EAPI7 revbump, improve ebuild * Removes the directfb flag (which is long gone) and disables it by default * Removes all *.la files (fixes 543040) * Disables static build Closes: https://bugs.gentoo.org/543040 Closes: https://bugs.gentoo.org/542612 Closes: https://bugs.gentoo.org/542622 Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libggi/libggi-2.2.2-r1.ebuild | 59 ++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/media-libs/libggi/libggi-2.2.2-r1.ebuild b/media-libs/libggi/libggi-2.2.2-r1.ebuild new file mode 100644 index 00000000000..eed2d23eee7 --- /dev/null +++ b/media-libs/libggi/libggi-2.2.2-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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="3dfx aalib cpu_flags_x86_mmx debug fbcon svga vis X" + +RDEPEND=">=media-libs/libgii-1.0.2 + aalib? ( >=media-libs/aalib-1.2-r1 ) + svga? ( >=media-libs/svgalib-1.4.2 ) + X? ( + x11-libs/libXt + x11-libs/libXxf86dga + x11-libs/libXxf86vm + )" +DEPEND="${RDEPEND} + X? ( x11-base/xorg-proto )" + +DOCS=( ChangeLog ChangeLog.1999 FAQ NEWS README ) + +src_configure() { + local myconf="" + + use svga || myconf="${myconf} --disable-svga --disable-vgagl" + + 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) \ + $(use_enable fbcon fbdev) \ + --disable-directfb \ + --disable-static \ + ${myconf} +} + +src_install(){ + default + + docinto txt + dodoc doc/*.txt + + find "${D}" -name '*.la' -delete || die +}