blob: 49b566e64269df215f4bd8d08fa3299c0698dc99 (
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
55
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Open Source video codec"
HOMEPAGE="http://dirac.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="MPL-1.1"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc cpu_flags_x86_mmx"
BDEPEND="
doc? (
app-doc/doxygen
virtual/latex-base
media-gfx/graphviz
>=app-text/texlive-core-2014
)"
PATCHES=(
"${FILESDIR}"/${PN}-0.5.2-doc.patch
)
src_prepare() {
default
AT_M4DIR="m4" eautoreconf
}
src_configure() {
export VARTEXFONTS="${T}/fonts"
econf \
$(use_enable cpu_flags_x86_mmx mmx) \
$(use_enable debug) \
$(use_enable doc)
}
src_install() {
emake \
DESTDIR="${D}" \
htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
latexdir="${EPREFIX}/usr/share/doc/${PF}/programmers" \
algodir="${EPREFIX}/usr/share/doc/${PF}/algorithm" \
faqdir="${EPREFIX}/usr/share/doc/${PF}" \
install
find "${ED}" -name '*.la' -delete || die
einstalldocs
}
|