# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libmpeg3/libmpeg3-1.5.2-r2.ebuild,v 1.3 2006/03/06 15:58:58 flameeyes Exp $ inherit flag-o-matic eutils toolchain-funcs PATCHLEVEL="3" DESCRIPTION="An mpeg library for linux" HOMEPAGE="http://heroinewarrior.com/libmpeg3.php3" SRC_URI="mirror://sourceforge/heroines/${P}-src.tar.bz2 mirror://gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86" IUSE="mmx" RDEPEND="sys-libs/zlib media-libs/jpeg media-libs/a52dec" DEPEND="${RDEPEND} mmx? ( dev-lang/nasm )" src_unpack() { unpack ${A} cd ${S} # The Makefile is patched to install the header files as well. # This patch was generated using the info in the src.rpm that # SourceForge provides for this package. [ "`gcc-version`" == "3.4" -o "`gcc-major-version`" -ge 4 ] || \ EPATCH_EXCLUDE="${EPATCH_EXCLUDE} 08_all_gcc34.patch" [ "`gcc-major-version`" -ge 4 ] || \ EPATCH_EXCLUDE="${EPATCH_EXCLUDE} 09_all_gcc4.patch" EPATCH_SUFFIX="patch" epatch ${WORKDIR}/${PV} # remove a52 crap echo > Makefile.a52 rm -rf a52dec-0.7.3/* ln -s /usr/include/a52dec a52dec-0.7.3/include local libs libs=" -la52" if ! [ -f "${ROOT}/usr/$(get_libdir)/liba52.so" ]; then if grep -q djbfft ${ROOT}/usr/$(get_libdir)/liba52.a; then libs="${libs} -ldjbfft" fi fi sed -i "/LIBS = /s:$: -L\${ROOT}usr/$(get_libdir) ${libs}:" Makefile if ! use mmx || has_pic ; then sed -i -e 's:^NASM =.*:NASM =:' \ -e 's|^HAVE_NASM :=.*|HAVE_NASM=n|' \ -e 's|USE_MMX = 1|USE_MMX = 0|' \ Makefile fi } src_compile() { local obj_dir=$(uname --machine) rm -f ${obj_dir}/*.o &> /dev/null make CC="$(tc-getCC)" ${obj_dir}/libmpeg3.a || die "Failed libmpeg3.a" rm -f ${obj_dir}/{video/,audio/,}*.o # x86 asm is not pic safe if ! use mmx || has_pie; then append-flags -fPIC fi make CC="$(tc-getCC)" ${obj_dir}/libmpeg3.so || die "Failed libmpeg3.so" # This would add -fno-pie to CFLAGS, so don't change to it! --eradicator # filter-flags -fPIC CFLAGS=${CFLAGS//-fPIC/} touch ${obj_dir}/libmpeg3.a make CC="$(tc-getCC)" || die "Failed to build utilities" } src_install() { # This patch patches the .h files that get installed into /usr/include # to show the correct include syntax '<>' instead of '""' This patch # was also generated using info from SF's src.rpm epatch ${WORKDIR}/${PV}/gentoo-p2.patch make DESTDIR="${D}/usr" LIBDIR="$(get_libdir)" install || die dohtml -r docs }