blob: 5a7bb92aeaad43b7417e83df1fcb51993990f9f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools 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"
S="${WORKDIR}/${MY_P}"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
IUSE="cpu_flags_x86_mmx"
DEPEND="media-libs/libsdl2[${MULTILIB_USEDEP}]"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-gcc6.patch
"${FILESDIR}"/${P}-smpeg2-config.patch
)
src_prepare() {
default
# avoid file collision with media-libs/smpeg
sed -i -e '/plaympeg/d' Makefile.am || die
AT_M4DIR="${ESYSROOT}/usr/share/aclocal acinclude" eautoreconf
}
multilib_src_configure() {
local myeconfargs=(
--disable-rpath
--disable-sdltest
--enable-debug # disabling this only passes extra optimizations
$(use_enable cpu_flags_x86_mmx mmx)
)
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
}
multilib_src_install_all() {
einstalldocs
find "${ED}" -name '*.la' -delete || die
}
|