libmpeg2-0.3.1.20030408.ebuild55mBIN4# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/media-libs/libmpeg2/libmpeg2-0.3.1.ebuild,v 1.4 2003/03/31 18:20:40 agriffis Exp $ #IUSE="sdl X" IUSE="" inherit libtool flag-o-matic #MY_P="${P}/libmpeg2/mpeg2dec" MY_P="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" SRC_URI="http://www.videolan.org/pub/vlc/0.5.3/contrib/mpeg2dec-20030408.tar.gz" HOMEPAGE="http://libmpeg2.sourceforge.net/" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~sparc ~ppc ~alpha" #DEPEND="sdl? ( media-libs/libsdl ) # X? ( virtual/x11 )" [ $ARCH = alpha ] && append-flags -fPIC src_unpack() { unpack ${A} # get rid of the -mcpu cd ${S} ./bootstrap cp configure configure.orig sed -e 's:OPT_CFLAGS=\"$CFLAGS -mcpu=.*\":OPT_CFLAGS=\"$CFLAGS\":g' \ configure.orig > configure } src_compile() { elibtoolize local myconf="" #use sdl \ # && myconf="${myconf} --enable-sdl" \ # || myconf="${myconf} --disable-sdl" #use X \ # && myconf="${myconf} --with-x" \ # || myconf="${myconf} --without-x" # no shared library, because this is a cvs version # add --enable-shared for release econf ${myconf} \ --disable-sdl --without-x \ || die "./configure failed" emake || make || die } src_install() { make DESTDIR=${D} install || die dodoc AUTHORS COPYING ChangeLog NEWS README TODO }