blob: 8369ac3653dfdd312cc707d011e0c4c6ba8440ce (
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
42
43
44
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/liboggz/liboggz-1.1.1.ebuild,v 1.5 2010/10/06 15:43:46 jer Exp $
EAPI=2
inherit autotools eutils
DESCRIPTION="Oggz provides a simple programming interface for reading and writing Ogg files and streams"
HOMEPAGE="http://www.xiph.org/oggz/"
SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86"
IUSE="doc static-libs test"
RDEPEND=">=media-libs/libogg-1.2.0"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( app-doc/doxygen )
test? ( app-text/docbook-sgml-utils )"
src_prepare() {
epatch "${FILESDIR}"/${P}-destdir.patch
if ! use doc; then
sed -i -e '/AC_CHECK_PROG/s:doxygen:dIsAbLe&:' configure.ac || die
fi
AT_M4DIR="m4" eautoreconf
}
src_configure() {
econf \
--disable-dependency-tracking \
$(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install || die
dodoc AUTHORS ChangeLog README TODO
find "${D}" -name '*.la' -delete
}
|