blob: 4392a7e3b594eb3635b8d99bb0f8ecf664e21ab1 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# 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.8 2005/10/06 22:29:00 matsuu Exp $
DESCRIPTION="tools for using the Ogg Vorbis sound file format"
HOMEPAGE="http://www.vorbis.com/"
SRC_URI="http://fatpipe.vorbis.com/files/1.0/unix/vorbis-tools-1.0.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc sparc x86"
IUSE="nls"
RDEPEND=">=media-libs/libvorbis-${PV}
>=media-libs/libogg-${PV}
>=media-libs/libao-0.8.2
>=net-misc/curl-7.9"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_compile() {
econf `use_enable nls` || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
rm -rf ${D}/usr/share/doc
dodoc AUTHORS README
docinto ogg123
dodoc ogg123/ogg123rc-example
}
|