summaryrefslogtreecommitdiff
blob: cce24586ed8f5c3cdacde8ba6b49e633974f085a (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
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit toolchain-funcs

DESCRIPTION="An STL-like tree class"
HOMEPAGE="http://www.aei.mpg.de/~peekas/tree/"
SRC_URI="http://www.aei.mpg.de/~peekas/tree/${P}.tar.gz"

LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc"

S="${WORKDIR}/${P}/src"

PATCHES=( "${FILESDIR}"/${P}-test.patch )

src_configure() {
	tc-export CXX
}

src_install() {
	doheader tree.hh tree_util.hh
	dodoc tree_example.cc

	if use doc; then
		dodoc ../doc/treefig.*
		rm ../doc/treefig.* || die

		docinto html
		rm ../doc/{doxygen_tree.config,favicon.ico,tree.tex} || die
		dodoc -r ../doc/.
	fi
	docompress -x /usr/share/doc/${PF}
}