blob: c7770acfdd793a3f1d2930fba912566bc656d4f7 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
DESCRIPTION="library for MPEG TS/DVB PSI tables decoding and generation"
HOMEPAGE="http://www.videolan.org/libdvbpsi"
SRC_URI="http://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="doc static-libs"
RDEPEND=""
DEPEND="
doc? (
app-doc/doxygen
>=media-gfx/graphviz-2.26
)" # Require recent enough graphviz wrt #181147
DOCS=( AUTHORS ChangeLog NEWS README TODO )
src_prepare() {
sed -e '/CFLAGS/s:-O2::' -e '/CFLAGS/s:-O6::' -i configure || die
}
src_configure() {
econf \
$(use_enable static-libs static) \
--enable-release
}
src_compile() {
emake
use doc && emake doc
}
src_install() {
default
use doc && dohtml doc/doxygen/html/*
rm -f "${ED}"usr/lib*/${PN}.la
}
|