blob: 5db58d01f4dae88db8fccb1dea1fe6f8cdcddf4b (
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
40
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-gconf/gst-plugins-gconf-0.10.0.ebuild,v 1.1 2005/12/05 21:23:06 zaheerm Exp $
inherit gnome2 gst-plugins-good gst-plugins10
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=gnome-base/gconf-2.0"
GST_PLUGINS_BUILD="gconf gconftool"
# override eclass
src_unpack() {
local makefiles
unpack ${A}
}
src_compile() {
gst-plugins-good_src_configure ${@}
gst-plugins10_find_plugin_dir
emake || die "compile failure"
cd ${S}/gconf
emake || die "compile failure"
}
src_install() {
gst-plugins10_find_plugin_dir
einstall || die
cd ${S}/gconf
gnome2_src_install || die
}
|