54 lines
1.3 KiB
Bash
54 lines
1.3 KiB
Bash
# Copyright 1999-2009 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.ebuild,v 1.9 2009/02/18 19:03:52 armin76 Exp $
|
|
|
|
inherit 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 ~x86-fbsd"
|
|
IUSE="sdl 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 )"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
|
|
# Fix problem that the test for external symbols
|
|
# uses nm which also displays hidden symbols. Bug #130831
|
|
# Breaks tests on other platforms: bug #255151
|
|
# epatch "${FILESDIR}"/${PN}-0.4.1-use-readelf-for-test.patch
|
|
|
|
elibtoolize
|
|
}
|
|
|
|
src_compile() {
|
|
econf \
|
|
--enable-shared \
|
|
--disable-dependency-tracking \
|
|
$(use_enable sdl) \
|
|
$(use_with X x)
|
|
emake \
|
|
OPT_CFLAGS="${CFLAGS}" \
|
|
MPEG2DEC_CFLAGS="${CFLAGS}" \
|
|
LIBMPEG2_CFLAGS="" \
|
|
|| die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "make install failed"
|
|
dodoc AUTHORS ChangeLog NEWS README TODO
|
|
}
|