blob: 96b647ef7f8386d5ef741dcbf00ffad6ee2feea0 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/linuxvideostudio/linuxvideostudio-0.1.7.ebuild,v 1.4 2004/06/28 03:29:39 agriffis Exp $
DESCRIPTION="small-'n-simple GUI for the MJPEG-tools"
HOMEPAGE="http://ronald.bitfreak.net/"
SRC_URI="http://ronald.bitfreak.net/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="lirc"
DEPEND=">=media-video/mjpegtools-1.6.0-r7
=x11-libs/gtk+-1.2*
media-libs/gdk-pixbuf
media-libs/libpng
media-libs/jpeg
lirc? ( app-misc/lirc )"
src_compile() {
local myconf
# setting the --with-lircd option somehow makes the test fail
if ! use lirc; then
myconf="--without-lircd"
fi
econf $myconf || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS ChangeLog README TODO README.stv ChangeLog.stv INSTALL.stv INSTALL
}
|