You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/libmpeg2/libmpeg2-0.5.1-r1.ebuild

58 lines
1.4 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmpeg2/libmpeg2-0.5.1-r1.ebuild,v 1.8 2012/05/17 14:32:33 aballier Exp $
EAPI=4
inherit autotools eutils libtool
DESCRIPTION="library for decoding mpeg-2 and mpeg-1 video"
HOMEPAGE="http://libmpeg2.sourceforge.net/"
SRC_URI="http://libmpeg2.sourceforge.net/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ppc ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
IUSE="sdl static-libs X"
RDEPEND="sdl? ( media-libs/libsdl )
X? ( x11-libs/libXv
x11-libs/libICE
x11-libs/libSM
x11-libs/libXt )"
DEPEND="${RDEPEND}
X? ( x11-proto/xextproto )"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
src_prepare() {
epatch \
"${FILESDIR}"/${P}-arm-private-symbols.patch \
"${FILESDIR}"/${P}-global-symbol-test.patch \
"${FILESDIR}"/${P}-armv4l.patch
elibtoolize
### PowerPC fix for altivec
epatch "${FILESDIR}"/${P}-altivec.patch
eautoconf
}
src_configure() {
econf \
$(use_enable static-libs static) \
--enable-shared \
$(use_enable sdl) \
$(use_with X x)
}
src_compile() {
emake OPT_CFLAGS="${CFLAGS}" \
MPEG2DEC_CFLAGS="${CFLAGS}" \
LIBMPEG2_CFLAGS=""
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}