summaryrefslogtreecommitdiff
blob: 6553dc5f8f61d69a6561778ffd614ae90d22e50d (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/vls/vls-0.5.5.ebuild,v 1.5 2004/06/25 00:52:39 agriffis Exp $

IUSE="debug"

DESCRIPTION="The VideoLAN server"
HOMEPAGE="http://www.videolan.org/vls/"
SRC_URI="http://www.videolan.org/pub/videolan/vls/${PV}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~alpha"

DEPEND=">=media-libs/libdvdread-0.9.4
	>=media-libs/libdvdcss-1.2.8
	>=media-libs/libdvbpsi-0.1.3"

src_compile() {
	local myconf
	use debug || myconf="--disable-debug"

	econf ${myconf} || die "econf failed"

	emake || die "emake failed"
}

src_install () {
	einstall || die "einstall failed"

	dodoc AUTHORS INSTALL README TODO
}