blob: dfcb3e0b03b4f1fdfdc16607f8997ad93990a772 (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/rte/rte-0.4.ebuild,v 1.6 2002/10/04 05:50:18 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Real Time Encoder"
SRC_URI="mirror://sourceforge/zapping/${P}.tar.bz2"
HOMEPAGE="http://zapping.sourceforge.net/"
DEPEND="esd? ( media-sound/esound )
alsa? ( media-libs/alsa-lib )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc sparc64"
src_compile() {
econf || die
make || die
}
src_install () {
einstall || die
dodoc AUTHORS COPYING ChangeLog NEWS README
}
|