blob: 884c520e3770c74da24077d1f2d9b2cbdea36900 (
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
|
# Copyright 1999-2010 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.4.0.ebuild,v 1.6 2010/07/04 17:20:13 ssuominen Exp $
EAPI=2
DESCRIPTION="tools for using the Ogg Vorbis sound file format"
HOMEPAGE="http://www.vorbis.com"
SRC_URI="http://downloads.xiph.org/releases/vorbis/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="flac kate nls +ogg123 speex"
RDEPEND=">=media-libs/libvorbis-1.3.0
flac? ( media-libs/flac )
kate? ( media-libs/libkate )
ogg123? ( >=media-libs/libao-1.0.0
net-misc/curl )
speex? ( media-libs/speex )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
dev-util/pkgconfig"
src_configure() {
econf \
--disable-dependency-tracking \
$(use_enable nls) \
$(use_enable ogg123) \
$(use_with flac) \
$(use_with speex) \
$(use_with kate)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS CHANGES README
}
|