# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/gstreamermm/gstreamermm-0.10.7.3.ebuild,v 1.7 2010/09/26 14:33:54 eva Exp $ EAPI="2" inherit gnome2 eutils DESCRIPTION="C++ interface for GStreamer" HOMEPAGE="http://gstreamer.freedesktop.org/bindings/cplusplus.html" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="test" # gstreamer 0.10.25 is needed for per-stream volume # see bug #308935 RDEPEND=" >=media-libs/gstreamer-0.10.28 >=media-libs/gst-plugins-base-0.10.28 >=dev-cpp/glibmm-2.21.1 >=dev-cpp/libxmlpp-2.14 >=dev-libs/libsigc++-2:2 " DEPEND="${RDEPEND} dev-util/pkgconfig test? ( media-libs/gst-plugins-good:0.10 media-plugins/gst-plugins-vorbis:0.10 media-plugins/gst-plugins-x:0.10 ) " src_prepare() { epatch "${FILESDIR}/${P}+gcc-4.5.patch" } src_test() { # explicitly allow parallel make of tests: they are not built in # src_compile() and indeed we'd slow down tremendously to run this # serially. emake check || die "tests failed" } src_install() { emake DESTDIR="${D}" libdocdir=/usr/share/doc/${PF} install || die "install failed" dodoc AUTHORS ChangeLog NEWS README || die find "${D}" -name '*.la' -delete || die "removal of *.la files failed" }