Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libggi/
Date: Fri, 02 Aug 2019 11:36:33
Message-Id: 1564745778.e59ffb3ff77ebc2f4f9adadd3a8afb1b202368c8.asturm@gentoo
1 commit: e59ffb3ff77ebc2f4f9adadd3a8afb1b202368c8
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 2 11:36:18 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 2 11:36:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e59ffb3f
7
8 media-libs/libggi: Drop 2.2.2 (r0)
9
10 Closes: https://bugs.gentoo.org/669354
11 Package-Manager: Portage-2.3.69, Repoman-2.3.16
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 media-libs/libggi/libggi-2.2.2.ebuild | 61 -----------------------------------
15 1 file changed, 61 deletions(-)
16
17 diff --git a/media-libs/libggi/libggi-2.2.2.ebuild b/media-libs/libggi/libggi-2.2.2.ebuild
18 deleted file mode 100644
19 index 521bb6974d0..00000000000
20 --- a/media-libs/libggi/libggi-2.2.2.ebuild
21 +++ /dev/null
22 @@ -1,61 +0,0 @@
23 -# Copyright 1999-2018 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=0
27 -
28 -DESCRIPTION="Provides an opaque interface to the display's acceleration function"
29 -HOMEPAGE="https://ibiblio.org/ggicore/packages/libggi.html"
30 -SRC_URI="mirror://sourceforge/ggi/${P}.src.tar.bz2"
31 -
32 -LICENSE="MIT"
33 -SLOT="0"
34 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
35 -IUSE="X aalib svga fbcon directfb 3dfx debug cpu_flags_x86_mmx vis"
36 -
37 -RDEPEND=">=media-libs/libgii-1.0.2
38 - X? ( x11-libs/libXt
39 - x11-libs/libXxf86dga
40 - x11-libs/libXxf86vm
41 - x11-libs/libXt )
42 - svga? ( >=media-libs/svgalib-1.4.2 )
43 - aalib? ( >=media-libs/aalib-1.2-r1 )"
44 -DEPEND="${RDEPEND}
45 - X? ( x11-base/xorg-proto )"
46 -
47 -src_compile() {
48 - local myconf=""
49 -
50 - use svga || myconf="${myconf} --disable-svga --disable-vgagl"
51 -
52 - if use !fbcon && use !directfb; then
53 - myconf="${myconf} --disable-fbdev --disable-directfb"
54 - elif use directfb; then
55 - myconf="${myconf} --enable-fbdev --enable-directfb"
56 - else
57 - myconf="${myconf} --enable-fbdev"
58 - fi
59 -
60 - if use amd64 || use ppc64 || use ia64 ; then
61 - myconf="${myconf} --enable-64bitc"
62 - else
63 - myconf="${myconf} --disable-64bitc"
64 - fi
65 -
66 - econf $(use_enable 3dfx glide) \
67 - $(use_enable aalib aa) \
68 - $(use_enable debug) \
69 - $(use_enable cpu_flags_x86_mmx mmx) \
70 - $(use_enable vis) \
71 - $(use_with X x) \
72 - $(use_enable X x) \
73 - ${myconf}
74 - emake || die
75 -}
76 -
77 -src_install () {
78 - emake DESTDIR="${D}" install || die
79 -
80 - dodoc ChangeLog* FAQ NEWS README
81 - docinto txt
82 - dodoc doc/*.txt
83 -}