blob: 0db99e3593a27702d9618bfa3d0d86987616ce8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# 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.6.ebuild,v 1.1 2010/03/10 20:40:16 flameeyes Exp $
EAPI=2
inherit gnome2
DESCRIPTION="C++ interface for GStreamer"
HOMEPAGE="http://gstreamer.freedesktop.org/bindings/cplusplus.html"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=media-libs/gstreamer-0.10.24
>=media-libs/gst-plugins-base-0.10.24
>=dev-cpp/glibmm-2.21.1
>=dev-cpp/libxmlpp-2.14
>=dev-libs/libsigc++-2.0"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
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}" install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README || die
find . -name '*.la' -delete
}
|