2015-01-15 21:45:27 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-04-19 20:39:38 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2014-04-19 20:39:38 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils toolchain-funcs autotools flag-o-matic multilib-minimal
|
|
|
|
|
|
|
|
DESCRIPTION="SDL MPEG Player Library"
|
|
|
|
HOMEPAGE="http://icculus.org/smpeg/"
|
|
|
|
SRC_URI="ftp://ftp.lokigames.com/pub/open-source/smpeg/${P}.tar.gz
|
|
|
|
mirror://gentoo/${P}-gtkm4.patch.bz2"
|
|
|
|
|
|
|
|
LICENSE="LGPL-2"
|
|
|
|
SLOT="0"
|
2015-04-28 09:14:44 +03:00
|
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
|
2015-01-29 21:56:51 +03:00
|
|
|
IUSE="X debug cpu_flags_x86_mmx opengl static-libs"
|
2014-04-19 20:39:38 +04:00
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
abi_x86_32? (
|
|
|
|
!app-emulation/emul-linux-x86-sdl[-abi_x86_32(-)]
|
|
|
|
!<=app-emulation/emul-linux-x86-sdl-20140406
|
|
|
|
)
|
2014-06-19 11:09:26 +04:00
|
|
|
>=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}]
|
2014-04-19 20:39:38 +04:00
|
|
|
opengl? (
|
2014-06-19 11:09:26 +04:00
|
|
|
>=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
|
|
|
|
>=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
|
2014-04-19 20:39:38 +04:00
|
|
|
)
|
|
|
|
X? (
|
2014-06-19 11:09:26 +04:00
|
|
|
>=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
|
|
|
|
>=x11-libs/libXi-1.7.2[${MULTILIB_USEDEP}]
|
|
|
|
>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
|
2014-04-19 20:39:38 +04:00
|
|
|
)"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
|
|
|
|
DOCS=( CHANGES README README.SDL_mixer TODO )
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}"/${P}-m4.patch \
|
|
|
|
"${FILESDIR}"/${P}-gnu-stack.patch \
|
|
|
|
"${FILESDIR}"/${P}-config.patch \
|
|
|
|
"${FILESDIR}"/${P}-PIC.patch \
|
|
|
|
"${FILESDIR}"/${P}-gcc41.patch \
|
|
|
|
"${FILESDIR}"/${P}-flags.patch \
|
|
|
|
"${FILESDIR}"/${P}-automake.patch \
|
|
|
|
"${FILESDIR}"/${P}-mmx.patch \
|
|
|
|
"${FILESDIR}"/${P}-malloc.patch \
|
2014-09-04 19:52:59 +04:00
|
|
|
"${FILESDIR}"/${P}-format.patch \
|
2014-04-19 20:39:38 +04:00
|
|
|
"${FILESDIR}"/${P}-missing-init.patch
|
|
|
|
|
|
|
|
cd "${WORKDIR}"
|
|
|
|
epatch "${DISTDIR}"/${P}-gtkm4.patch.bz2
|
|
|
|
rm "${S}/acinclude.m4"
|
|
|
|
|
|
|
|
cd "${S}"
|
|
|
|
AT_M4DIR="${S}/m4" eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
multilib_src_configure() {
|
|
|
|
[[ ${CHOST} == *-solaris* ]] && append-libs -lnsl -lsocket
|
|
|
|
|
|
|
|
# the debug option is bogus ... all it does is add extra
|
|
|
|
# optimizations if you pass --disable-debug
|
|
|
|
ECONF_SOURCE="${S}" econf \
|
|
|
|
--enable-debug \
|
|
|
|
--disable-gtk-player \
|
|
|
|
$(use_enable static-libs static) \
|
|
|
|
$(use_enable debug assertions) \
|
|
|
|
$(use_with X x) \
|
|
|
|
$(use_enable opengl opengl-player) \
|
2015-01-29 21:56:51 +03:00
|
|
|
$(use_enable cpu_flags_x86_mmx mmx)
|
2014-04-19 20:39:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
multilib_src_install_all() {
|
2015-02-22 13:08:02 +03:00
|
|
|
use static-libs || prune_libtool_files
|
2014-04-19 20:39:38 +04:00
|
|
|
}
|