commit: 1aa9440b9174afc94c15567a80c2e719b990c4bc
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 12 23:39:36 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 01:02:22 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aa9440b
media-libs/guilib: drop old EAPI
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
media-libs/guilib/guilib-1.2.1.ebuild | 39 -----------------------------------
1 file changed, 39 deletions(-)
diff --git a/media-libs/guilib/guilib-1.2.1.ebuild
b/media-libs/guilib/guilib-1.2.1.ebuild
deleted file mode 100644
index b58526c31b5..00000000000
--- a/media-libs/guilib/guilib-1.2.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit autotools
-
-MY_P=GUIlib-${PV}
-
-DESCRIPTION="Simple widget set for SDL"
-SRC_URI="https://www.libsdl.org/projects/GUIlib/src/${MY_P}.tar.gz"
-HOMEPAGE="https://www.libsdl.org/projects/GUIlib/"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc x86"
-IUSE="static-libs"
-
-RDEPEND=">=media-libs/libsdl-1.0.1"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- sed -i -e '/^noinst_PROGRAMS/,$d' Makefile.am
-
- rm -f *.m4
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable static-libs static)
-}
-
-src_install() {
- default
-
- use static-libs || find "${ED}" -name '*.la' -exec rm {} +
-}