blob: 45ba8e835d49eb16a242422abd7c628c680eddb5 (
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
41
42
43
44
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gst-editor/gst-editor-0.2.0.ebuild,v 1.2 2003/02/13 11:55:37 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GStreamer graphical pipeline editor"
SRC_URI="mirror://sourceforge/gstreamer/${P}.tar.bz2"
HOMEPAGE="http://www.gstreamer.net/apps/gst-editor/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=media-libs/gstreamer-0.4.1
>=x11-libs/gtk+-2
>=gnome-base/libgnomeui-2
>=gnome-base/libbonoboui-2
>=gnome-base/libglade-2
>=gnome-base/ORBit2-2
>=x11-libs/pango-1
>=dev-libs/atk-1
>=gnome-base/gnome-vfs-2
dev-libs/libxml2
net-libs/linc
media-libs/libart_lgpl
>=media-libs/freetype-2
>=gnome-base/libgnomecanvas-2
app-text/scrollkeeper
>=gnome-base/gconf-1.2.0"
src_compile() {
econf || die "Configuration failed"
emake || die "Compilation failed"
}
src_install () {
einstall || die "Installation failed"
dodoc AUTHORS COPYING ChangeLog HACKING IDEAS NEWS README RELEASE TODO
}
pkg_postinst () {
einfo "Updating Scrollkeeper"
scrollkeeper-update
}
|