blob: 393b55599081efe6f7773e488d70c603ef65ec58 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
DESCRIPTION="A C++ class library for writing CGI applications"
HOMEPAGE="https://www.gnu.org/software/cgicc/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="LGPL-3 doc? ( FDL-1.2 )"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc"
RDEPEND=""
DEPEND="doc? ( app-doc/doxygen )"
src_configure() {
if ! use doc; then
sed -i \
-e 's/^\(SUBDIRS = .*\) doc \(.*\)/\1 \2/' \
Makefile.in || die
fi
econf \
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
--disable-dependency-tracking \
--disable-demos
}
src_install() {
default
dodoc AUTHORS BUGS ChangeLog NEWS README* THANKS
if use doc; then
insinto /usr/share/doc/${PF}/contrib
doins contrib/*.{cpp,h} contrib/README
insinto /usr/share/doc/${PF}/demo
doins -r demo/*.{cpp,h} demo/images demo/README
fi
}
|