diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-09-10 21:11:08 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-09-10 21:11:08 +0300 |
commit | 773a0adf8d9b92af17993deef7e96f83c46bf8af (patch) | |
tree | 9276176b8b7bfe0306d855f44a2087f05af9bf20 /media-libs/esdl | |
parent | media-libs/esdl: Stabilize 1.3.1-r1 ppc, #913076 (diff) | |
download | gentoo-773a0adf8d9b92af17993deef7e96f83c46bf8af.tar.gz gentoo-773a0adf8d9b92af17993deef7e96f83c46bf8af.tar.bz2 gentoo-773a0adf8d9b92af17993deef7e96f83c46bf8af.zip |
media-libs/esdl: drop 1.3.1, --EAPI6
Closes: https://bugs.gentoo.org/913076
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'media-libs/esdl')
-rw-r--r-- | media-libs/esdl/esdl-1.3.1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/media-libs/esdl/esdl-1.3.1.ebuild b/media-libs/esdl/esdl-1.3.1.ebuild deleted file mode 100644 index 80fb6155d9ee..000000000000 --- a/media-libs/esdl/esdl-1.3.1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit fixheadtails - -DESCRIPTION="Erlang bindings for the SDL library" -HOMEPAGE="https://esdl.sourceforge.net/" -SRC_URI="mirror://sourceforge/esdl/${P}.src.tgz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="image truetype" - -RDEPEND=" - >=dev-lang/erlang-14[wxwidgets] - media-libs/libsdl[opengl] - image? ( media-libs/sdl-image ) - truetype? ( media-libs/sdl-ttf ) - virtual/opengl -" -DEPEND=" - ${RDEPEND} - dev-util/rebar:0 -" - -src_compile() { - rebar compile || die -} - -src_install() { - ERLANG_DIR="/usr/$(get_libdir)/erlang/lib" - ESDL_DIR="${ERLANG_DIR}/${P}" - - find -name 'Makefile*' -exec rm -f '{}' \; - - insinto ${ESDL_DIR} - doins -r ebin c_src include priv src -} |