summaryrefslogtreecommitdiff
blob: eab0601e280655d0437d55fa294c46b7336256fa (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/lives/lives-0.8.5.ebuild,v 1.2 2004/06/25 00:43:44 agriffis Exp $

DESCRIPTION="Linux Video Editing System"

HOMEPAGE="http://www.xs4all.nl/~salsaman/lives"

MY_PN=LiVES
MY_P=${MY_PN}-${PV}

SRC_URI="http://www.xs4all.nl/~salsaman/lives/${MY_P}-src.tar.bz2"

LICENSE="GPL-2"

SLOT="0"

KEYWORDS="~x86 ~ppc ~amd64"

IUSE="xmms"

DEPEND=">=media-video/mplayer-0.90-r2
		>=media-gfx/imagemagick-5.5.6
		>=dev-lang/perl-5.8.0-r12
		>=x11-libs/gtk+-2.2.1
		media-libs/gdk-pixbuf
		media-libs/libsdl
		>=media-libs/jpeg-6b-r3
		>=media-sound/sox-12.17.3-r3
		xmms? ( >=media-sound/xmms-1.2.7-r20 )
		>=app-cdr/cdrtools-2.01_alpha14"

S=${WORKDIR}/${MY_P}

src_unpack() {
	unpack ${A}
	tar -xzf ${S}/lives-plugins-${PV}.tar.gz
	tar -xzf ${S}/lives-themes-${PV}.tar.gz
}

src_compile() {
		econf || die
		emake || die
		cd src-plugins
		gcc ${CFLAGS} `pkg-config gtk+-2.0 --cflags` `sdl-config --cflags` SDL.c \
			${LDFLAGS} `pkg-config gtk+-2.0 --libs` `sdl-config --libs` --shared \
			-fPIC -o SDL || die "SDL plugin not built"

}

src_install() {
		einstall || die
		insinto /usr/bin
		dobin ${S}/smogrify || die
		dobin ${S}/midistart || die
		dobin ${S}/midistop || die
		dodoc AUTHORS CHANGELOG FEATURES GETTING.STARTED
		dodir /usr/share/lives/plugins/
		cp -R  ${WORKDIR}/plugins ${D}/usr/share/lives/
		cp ${S}/src-plugins/SDL ${D}/usr/share/lives/plugins/playback/video/
		cp -R ${WORKDIR}/icons ${D}/usr/share/lives/
		cp -R ${WORKDIR}/themes ${D}/usr/share/lives/
}