Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/smpeg2/
Date: Mon, 04 Oct 2021 21:00:06
Message-Id: 1633381146.7437d6b9629b523bdc0bdab22d968b1d83b90cc5.ionen@gentoo
1 commit: 7437d6b9629b523bdc0bdab22d968b1d83b90cc5
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 19:22:26 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 20:59:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7437d6b9
7
8 media-libs/smpeg2: drop 2.0.0-r3
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 media-libs/smpeg2/smpeg2-2.0.0-r3.ebuild | 55 --------------------------------
13 1 file changed, 55 deletions(-)
14
15 diff --git a/media-libs/smpeg2/smpeg2-2.0.0-r3.ebuild b/media-libs/smpeg2/smpeg2-2.0.0-r3.ebuild
16 deleted file mode 100644
17 index d6b423f907b..00000000000
18 --- a/media-libs/smpeg2/smpeg2-2.0.0-r3.ebuild
19 +++ /dev/null
20 @@ -1,55 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit autotools epatch multilib-minimal
27 -
28 -MY_P=smpeg-${PV}
29 -DESCRIPTION="SDL MPEG Player Library"
30 -HOMEPAGE="https://icculus.org/smpeg/"
31 -SRC_URI="https://dev.gentoo.org/~hasufell/distfiles/${MY_P}.tar.bz2"
32 -
33 -LICENSE="LGPL-2"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 sparc x86"
36 -IUSE="debug cpu_flags_x86_mmx static-libs"
37 -
38 -DEPEND=">=media-libs/libsdl2-2.0.1-r1[${MULTILIB_USEDEP}]"
39 -RDEPEND="${DEPEND}"
40 -
41 -DOCS=( CHANGES README README.SDL_mixer TODO )
42 -
43 -S=${WORKDIR}/${MY_P}
44 -
45 -src_prepare() {
46 - epatch "${FILESDIR}"/${P}-smpeg2-config.patch
47 - epatch "${FILESDIR}"/${P}-gcc6.patch
48 - epatch_user
49 -
50 - # avoid file collision with media-libs/smpeg
51 - sed -i \
52 - -e '/plaympeg/d' \
53 - Makefile.am || die
54 -
55 - mv configure.in configure.ac || die
56 - AT_M4DIR="/usr/share/aclocal acinclude" eautoreconf
57 -}
58 -
59 -multilib_src_configure() {
60 - # the debug option is bogus ... all it does is add extra
61 - # optimizations if you pass --disable-debug
62 - ECONF_SOURCE="${S}" econf \
63 - $(use_enable static-libs static) \
64 - --disable-rpath \
65 - --enable-debug \
66 - --disable-sdltest \
67 - $(use_enable cpu_flags_x86_mmx mmx) \
68 - $(use_enable debug assertions)
69 -}
70 -
71 -multilib_src_install_all() {
72 - if ! use static-libs; then
73 - find "${ED}" -name '*.la' -delete || die
74 - fi
75 -}