blob: 0b88db66fc22a7c6ae9386bc3f70cba9a9bd78c3 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/celt/celt-0.5.1.3.ebuild,v 1.7 2013/01/06 09:46:07 ago Exp $
EAPI="2"
DESCRIPTION="CELT is a very low delay audio codec designed for high-quality communications."
HOMEPAGE="http://www.celt-codec.org/"
SRC_URI="http://downloads.us.xiph.org/releases/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0.5.1"
KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="ogg static-libs"
DEPEND="ogg? ( media-libs/libogg )"
RDEPEND="${DEPEND}"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_with ogg ogg /usr)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc README TODO || die "dodoc failed."
use static-libs || find "${D}" -name '*.la' -delete
}
|