summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2019-11-12 18:39:36 -0500
committerAaron Bauman <bman@gentoo.org>2019-11-12 20:02:22 -0500
commit1aa9440b9174afc94c15567a80c2e719b990c4bc (patch)
tree780acbd5e29f969c21ffb4c59152e319dde9f5ea /media-libs/guilib
parentmedia-libs/guilib: ALLARCHES EAPI bump (diff)
downloadgentoo-1aa9440b9174afc94c15567a80c2e719b990c4bc.tar.gz
gentoo-1aa9440b9174afc94c15567a80c2e719b990c4bc.tar.bz2
gentoo-1aa9440b9174afc94c15567a80c2e719b990c4bc.zip
media-libs/guilib: drop old EAPI
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'media-libs/guilib')
-rw-r--r--media-libs/guilib/guilib-1.2.1.ebuild39
1 files changed, 0 insertions, 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 b58526c31b56..000000000000
--- 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 {} +
-}