diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2021-10-04 15:22:26 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-10-04 16:59:06 -0400 |
commit | 7437d6b9629b523bdc0bdab22d968b1d83b90cc5 (patch) | |
tree | 85ca31250e38b59f8edc45863b74760ae59ce756 /media-libs/smpeg2 | |
parent | media-libs/smpeg: drop 0.4.4-r10 (diff) | |
download | gentoo-7437d6b9629b523bdc0bdab22d968b1d83b90cc5.tar.gz gentoo-7437d6b9629b523bdc0bdab22d968b1d83b90cc5.tar.bz2 gentoo-7437d6b9629b523bdc0bdab22d968b1d83b90cc5.zip |
media-libs/smpeg2: drop 2.0.0-r3
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'media-libs/smpeg2')
-rw-r--r-- | media-libs/smpeg2/smpeg2-2.0.0-r3.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/media-libs/smpeg2/smpeg2-2.0.0-r3.ebuild b/media-libs/smpeg2/smpeg2-2.0.0-r3.ebuild deleted file mode 100644 index d6b423f907b8..000000000000 --- a/media-libs/smpeg2/smpeg2-2.0.0-r3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools epatch multilib-minimal - -MY_P=smpeg-${PV} -DESCRIPTION="SDL MPEG Player Library" -HOMEPAGE="https://icculus.org/smpeg/" -SRC_URI="https://dev.gentoo.org/~hasufell/distfiles/${MY_P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 sparc x86" -IUSE="debug cpu_flags_x86_mmx static-libs" - -DEPEND=">=media-libs/libsdl2-2.0.1-r1[${MULTILIB_USEDEP}]" -RDEPEND="${DEPEND}" - -DOCS=( CHANGES README README.SDL_mixer TODO ) - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/${P}-smpeg2-config.patch - epatch "${FILESDIR}"/${P}-gcc6.patch - epatch_user - - # avoid file collision with media-libs/smpeg - sed -i \ - -e '/plaympeg/d' \ - Makefile.am || die - - mv configure.in configure.ac || die - AT_M4DIR="/usr/share/aclocal acinclude" eautoreconf -} - -multilib_src_configure() { - # the debug option is bogus ... all it does is add extra - # optimizations if you pass --disable-debug - ECONF_SOURCE="${S}" econf \ - $(use_enable static-libs static) \ - --disable-rpath \ - --enable-debug \ - --disable-sdltest \ - $(use_enable cpu_flags_x86_mmx mmx) \ - $(use_enable debug assertions) -} - -multilib_src_install_all() { - if ! use static-libs; then - find "${ED}" -name '*.la' -delete || die - fi -} |