blob: f1a2d5906d466cebec2eaaa34f0a90d8762ea4e8 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/camserv/camserv-0.5.0.ebuild,v 1.12 2004/06/25 03:20:11 agriffis Exp $
inherit eutils
DESCRIPTION="A streaming video server"
HOMEPAGE="http://cserv.sourceforge.net/"
SRC_URI="http://cserv.sourceforge.net/current/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=media-libs/jpeg-6b-r2
>=media-libs/imlib-1.9.13-r2"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-0.5-errno.patch
}
src_install() {
einstall datadir=${D}/usr/share/${PN} || die
dodoc AUTHORS BUGS ChangeLog NEWS README TODO javascript.txt
dohtml defpage.html
}
|