gentoo-ebuilds/media-libs/smpeg/smpeg-0.4.4-r12.ebuild
Arthur Zamarin 0ad96e879b
*/*: destable sparc
Result of running the command:
 grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-09-02 20:00:14 +03:00

55 lines
1.3 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic multilib-minimal
DESCRIPTION="SDL MPEG Player Library"
HOMEPAGE="https://icculus.org/smpeg/"
SRC_URI="
https://mirrors.dotsrc.org/lokigames/open-source/smpeg/${P}.tar.gz
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/smpeg-0.4.4-patches.tar.xz
"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="cpu_flags_x86_mmx opengl"
RDEPEND="
media-libs/libsdl[opengl?,sound,video,${MULTILIB_USEDEP}]
opengl? (
virtual/glu[${MULTILIB_USEDEP}]
virtual/opengl[${MULTILIB_USEDEP}]
)"
DEPEND="${RDEPEND}"
PATCHES=(
"${WORKDIR}"/smpeg-0.4.4-patches
)
src_prepare() {
default
rm acinclude.m4 || die
AT_M4DIR="m4" eautoreconf
}
multilib_src_configure() {
[[ ${CHOST} == *-solaris* ]] && append-libs -lnsl -lsocket
local myeconfargs=(
--disable-gtk-player
--enable-debug # disabling this only passes extra optimizations
--without-x # does not actually use X, only causes a headers check
$(use_enable cpu_flags_x86_mmx mmx)
$(use_enable opengl opengl-player)
)
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
}
multilib_src_install_all() {
einstalldocs
find "${ED}" -name '*.la' -delete || die
}