You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
905 B
45 lines
905 B
# 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
|
|
}
|