# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.3.ebuild,v 1.1 2007/12/08 14:22:05 drac Exp $ inherit flag-o-matic eutils MY_PN=${PN/-plugins/} MY_P=${MY_PN}-${PV} # Create a major/minor combo for SLOT PVP=(${PV//[-\._]/ }) SLOT=${PVP[0]}.${PVP[1]} #SLOT=0.10 DESCRIPTION="FFmpeg based gstreamer plugin" HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html" SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.bz2" LICENSE="GPL-2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="" S=${WORKDIR}/${MY_P} DEPEND=">=media-libs/gstreamer-0.10.4 >=media-libs/gst-plugins-base-0.10.4 >=dev-libs/liboil-0.3.6 dev-util/pkgconfig" src_compile() { # Restrictions taken from the mplayer ebuild # See bug #64262 for more info # let's play the filtration game! filter-flags -fPIE -fPIC -fstack-protector -fforce-addr -momit-leaf-frame-pointer -msse2 -msse3 -falign-functions -fweb # ugly optimizations cause MPlayer to cry on x86 systems! if use x86 ; then replace-flags -O0 -O2 replace-flags -O3 -O2 fi econf --disable-ffplay emake || die "emake failed." } src_install() { emake DESTDIR="${D}" install || die "emake install failed." dodoc AUTHORS ChangeLog NEWS README TODO }