diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-08-02 13:36:18 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-08-02 13:36:18 +0200 |
commit | e59ffb3ff77ebc2f4f9adadd3a8afb1b202368c8 (patch) | |
tree | e431269fea13d20669b5afd9dd18ec5e66f48a18 /media-libs | |
parent | dev-libs/double-conversion: Drop 3.0.3 (diff) | |
download | gentoo-e59ffb3ff77ebc2f4f9adadd3a8afb1b202368c8.tar.gz gentoo-e59ffb3ff77ebc2f4f9adadd3a8afb1b202368c8.tar.bz2 gentoo-e59ffb3ff77ebc2f4f9adadd3a8afb1b202368c8.zip |
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 <asturm@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libggi/libggi-2.2.2.ebuild | 61 |
1 files changed, 0 insertions, 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 521bb6974d00..000000000000 --- 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 -} |