blob: 2ad2108afaaceb8bb59887c62f4ac0385ec65cf8 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/vorbis-tools/vorbis-tools-1.0-r2.ebuild,v 1.1 2003/11/17 00:20:08 spider Exp $
IUSE="nls"
S=${WORKDIR}/${P}
DESCRIPTION="tools for using the Ogg Vorbis sound file format"
SRC_URI="http://fatpipe.vorbis.com/files/1.0/unix/vorbis-tools-1.0.tar.gz"
HOMEPAGE="http://www.xiph.org/ogg/vorbis/index.html"
RDEPEND=">=media-libs/libvorbis-${PV}
>=media-libs/libogg-${PV}
>=media-libs/libao-0.8.2
>=net-ftp/curl-7.9"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha hppa amd64 ia64"
LICENSE="as-is"
src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
econf ${myconf} || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
rm -rf ${D}/usr/share/doc
dodoc AUTHORS COPYING README
docinto ogg123
dodoc ogg123/ogg123rc-example
}
|