blob: 0e59b18b7752bd7b577a3a1d0971f6fb8c671be9 (
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
56
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="A collection of portable C++ classes"
HOMEPAGE="http://www.coyotegulch.com/products/libcoyotl/"
SRC_URI="http://www.coyotegulch.com/distfiles/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="media-libs/libpng:0="
DEPEND="${RDEPEND}"
BDEPEND="doc? ( app-doc/doxygen )"
DOCS=( AUTHORS ChangeLog NEWS README )
PATCHES=(
"${FILESDIR}"/${PV}-gcc-4.3.patch
"${FILESDIR}"/${PV}-gcc-4.7.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
ac_cv_prog_HAVE_DOXYGEN="false" econf --disable-static
}
src_compile() {
emake
if use doc ; then
cd docs || die
doxygen libcoyotl.doxygen || die "generating docs failed"
fi
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
if use doc ; then
docinto html
dodoc docs/html/*
fi
}
|