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/smpeg/
Date: Mon, 04 Oct 2021 21:00:06
Message-Id: 1633381146.90e2ade895713daafca597a34e29c070aee7a36c.ionen@gentoo
1 commit: 90e2ade895713daafca597a34e29c070aee7a36c
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 19:21:54 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=90e2ade8
7
8 media-libs/smpeg: drop 0.4.4-r10
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 media-libs/smpeg/smpeg-0.4.4-r10.ebuild | 75 ---------------------------------
13 1 file changed, 75 deletions(-)
14
15 diff --git a/media-libs/smpeg/smpeg-0.4.4-r10.ebuild b/media-libs/smpeg/smpeg-0.4.4-r10.ebuild
16 deleted file mode 100644
17 index 410c6a7db18..00000000000
18 --- a/media-libs/smpeg/smpeg-0.4.4-r10.ebuild
19 +++ /dev/null
20 @@ -1,75 +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 flag-o-matic multilib-minimal
27 -
28 -DESCRIPTION="SDL MPEG Player Library"
29 -HOMEPAGE="https://icculus.org/smpeg/"
30 -SRC_URI="ftp://ftp.lokigames.com/pub/open-source/smpeg/${P}.tar.gz
31 - mirror://gentoo/${P}-gtkm4.patch.bz2"
32 -
33 -LICENSE="LGPL-2"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
36 -IUSE="X debug cpu_flags_x86_mmx opengl static-libs"
37 -
38 -RDEPEND="
39 - >=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}]
40 - opengl? (
41 - >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
42 - >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
43 - )
44 - X? (
45 - >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
46 - >=x11-libs/libXi-1.7.2[${MULTILIB_USEDEP}]
47 - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
48 - )"
49 -DEPEND="${RDEPEND}"
50 -
51 -DOCS=( CHANGES README README.SDL_mixer TODO )
52 -
53 -src_prepare() {
54 - epatch "${FILESDIR}"/${P}-m4.patch \
55 - "${FILESDIR}"/${P}-gnu-stack.patch \
56 - "${FILESDIR}"/${P}-config.patch \
57 - "${FILESDIR}"/${P}-PIC.patch \
58 - "${FILESDIR}"/${P}-gcc41.patch \
59 - "${FILESDIR}"/${P}-flags.patch \
60 - "${FILESDIR}"/${P}-automake.patch \
61 - "${FILESDIR}"/${P}-mmx.patch \
62 - "${FILESDIR}"/${P}-malloc.patch \
63 - "${FILESDIR}"/${P}-format.patch \
64 - "${FILESDIR}"/${P}-missing-init.patch \
65 - "${FILESDIR}"/${P}-gcc6.patch
66 -
67 - cd "${WORKDIR}"
68 - epatch "${DISTDIR}"/${P}-gtkm4.patch.bz2
69 - rm "${S}/acinclude.m4"
70 -
71 - cd "${S}"
72 - mv configure.in configure.ac || die
73 - AT_M4DIR="${S}/m4" eautoreconf
74 -}
75 -
76 -multilib_src_configure() {
77 - [[ ${CHOST} == *-solaris* ]] && append-libs -lnsl -lsocket
78 -
79 - # the debug option is bogus ... all it does is add extra
80 - # optimizations if you pass --disable-debug
81 - ECONF_SOURCE="${S}" econf \
82 - --enable-debug \
83 - --disable-gtk-player \
84 - $(use_enable static-libs static) \
85 - $(use_enable debug assertions) \
86 - $(use_with X x) \
87 - $(use_enable opengl opengl-player) \
88 - $(use_enable cpu_flags_x86_mmx mmx)
89 -}
90 -
91 -multilib_src_install_all() {
92 - if ! use static-libs; then
93 - find "${ED}" -name '*.la' -delete || die
94 - fi
95 -}