summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2021-10-12 10:49:21 -0400
committerIonen Wolkens <ionen@gentoo.org>2021-10-12 10:55:22 -0400
commit541e0d827fe77c672f21ed66c4f8b544f2e79fac (patch)
treebb9ab5b6475b284bbe4b64edba7edc22415237b4 /media-libs
parentgames-emulation/caps: treeclean (diff)
downloadgentoo-541e0d827fe77c672f21ed66c4f8b544f2e79fac.tar.gz
gentoo-541e0d827fe77c672f21ed66c4f8b544f2e79fac.tar.bz2
gentoo-541e0d827fe77c672f21ed66c4f8b544f2e79fac.zip
media-libs/sdl-terminal: treeclean
Closes: https://bugs.gentoo.org/776904 Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/sdl-terminal/Manifest1
-rw-r--r--media-libs/sdl-terminal/files/sdl-terminal-1.1.3-nopython.patch24
-rw-r--r--media-libs/sdl-terminal/metadata.xml11
-rw-r--r--media-libs/sdl-terminal/sdl-terminal-1.1.3-r1.ebuild38
4 files changed, 0 insertions, 74 deletions
diff --git a/media-libs/sdl-terminal/Manifest b/media-libs/sdl-terminal/Manifest
deleted file mode 100644
index 5ecdc6b1ad23..000000000000
--- a/media-libs/sdl-terminal/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST SDL_terminal-1.1.3.tar.gz 466321 BLAKE2B 49c8a8262fd4a9dd14ce987e9128ece958e0357e8da3877516a9e139951d04ef779a414b15ab7748de679c053b8b14d461dbd4575b7aea62fe12608889a88c23 SHA512 be6e74430ac9467e58fde6048b042db319940e564061b6e537f45dcbd54148f5df593dd0b8a28d866ae298d0f1c8f3a113bf23640c25213c6784ede5233882ef
diff --git a/media-libs/sdl-terminal/files/sdl-terminal-1.1.3-nopython.patch b/media-libs/sdl-terminal/files/sdl-terminal-1.1.3-nopython.patch
deleted file mode 100644
index c9d3214dd091..000000000000
--- a/media-libs/sdl-terminal/files/sdl-terminal-1.1.3-nopython.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- configure.ac.old 2014-07-22 14:19:33.797413503 +0200
-+++ configure.ac 2014-07-22 14:19:55.293201011 +0200
-@@ -108,7 +108,6 @@
- fi
- AC_SUBST(GL_LIBS)
-
--AC_PYTHON_DEVEL
-
- # Finally create all the generated files
- # The configure script takes "file.in" and substitutes variables to produce
-@@ -118,5 +117,4 @@
- Makefile
- src/Makefile
- include/Makefile
--examples/Makefile
- ])
---- Makefile.am.old 2014-07-22 14:19:40.729344917 +0200
-+++ Makefile.am 2014-07-22 14:20:06.353091713 +0200
-@@ -1,4 +1,4 @@
- ## Process this file with automake to produce Makefile.in
-
--SUBDIRS = src include examples
-+SUBDIRS = src include
-
diff --git a/media-libs/sdl-terminal/metadata.xml b/media-libs/sdl-terminal/metadata.xml
deleted file mode 100644
index a4d841a67e7a..000000000000
--- a/media-libs/sdl-terminal/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>games@gentoo.org</email>
- <name>Gentoo Games Project</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">sdl-terminal</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/media-libs/sdl-terminal/sdl-terminal-1.1.3-r1.ebuild b/media-libs/sdl-terminal/sdl-terminal-1.1.3-r1.ebuild
deleted file mode 100644
index bd3598f12cc7..000000000000
--- a/media-libs/sdl-terminal/sdl-terminal-1.1.3-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit epatch autotools
-
-MY_P="${P/sdl-/SDL_}"
-DESCRIPTION="library that provides a pseudo-ansi color terminal that can be used with any SDL application"
-HOMEPAGE="https://sourceforge.net/projects/sdl-terminal/"
-SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="static-libs"
-
-DEPEND="virtual/opengl
- virtual/glu
- >=media-libs/libsdl-1.2.4[opengl]
- media-libs/sdl-ttf"
-RDEPEND=${DEPEND}
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-nopython.patch
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable static-libs static)
-}
-
-src_install() {
- DOCS="AUTHORS ChangeLog README" \
- default
- find "${ED}" -name '*.la' -delete || die
-}