blob: 368a9cb32aeae530e5c4bb8d0af3a175260999bc (
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
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdcss/libdvdcss-1.2.10.ebuild,v 1.11 2011/09/09 17:28:44 scarabeus Exp $
EAPI=4
inherit eutils autotools
DESCRIPTION="A portable abstraction library for DVD decryption"
HOMEPAGE="http://www.videolan.org/developers/libdvdcss.html"
SRC_URI="http://www.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="1.2"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="doc static-libs"
DEPEND="doc? (
app-doc/doxygen
virtual/latex-base
dev-tex/xcolor
|| ( dev-texlive/texlive-latexextra app-text/ptex )
)"
RDEPEND=""
DOCS=( AUTHORS ChangeLog NEWS README )
src_prepare() {
sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' \
"${S}"/test/Makefile.am \
|| die "unable to disable tests building"
eautoreconf
}
src_configure() {
# See bug #98854, requires access to fonts cache for TeX
# No need to use addwrite, just set TeX font cache in the sandbox
use doc && export VARTEXFONTS="${T}/fonts"
econf \
--enable-shared \
$(use_enable static-libs static) \
$(use_enable doc)
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
use doc && dohtml doc/html/*
use doc && dodoc doc/latex/refman.ps
}
|