# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libmpeg2/libmpeg2-0.2.1.ebuild,v 1.14 2005/03/21 06:58:07 mr_bones_ Exp $ inherit libtool flag-o-matic MY_P="${P/libmpeg2/mpeg2dec}" S="${WORKDIR}/${MY_P}" DESCRIPTION="library for decoding mpeg-2 and mpeg-1 video" SRC_URI="http://libmpeg2.sourceforge.net/files/${MY_P}.tar.gz" HOMEPAGE="http://libmpeg2.sourceforge.net/" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 sparc ~ppc" IUSE="sdl X" DEPEND="sdl? ( media-libs/libsdl ) X? ( virtual/x11 )" src_unpack() { unpack ${A} cd "${S}" # this build doesn't play nice with -maltivec (gcc 3.2 only option) on ppc filter-flags "-maltivec -mabi=altivec" # get rid of the -mcpu sed -i \ -e 's:OPT_CFLAGS=\"$CFLAGS -mcpu=.*\":OPT_CFLAGS=\"$CFLAGS\":g' \ configure \ || die "sed failed" elibtoolize } src_compile() { local myconf use sdl || myconf="${myconf} --disable-sdl" use X && myconf="${myconf} --with-x" \ || myconf="${myconf} --without-x" econf --enable-shared \ ${myconf} || die "./configure failed" emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog NEWS README TODO }