gentoo/dev-cpp/tree/tree-3.17.ebuild
Agostino Sarubbo 988497e0bb
dev-cpp/tree: ppc64 stable wrt bug #804807
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
2021-07-30 17:15:23 +02:00

40 lines
743 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DOCS_BUILDER="doxygen"
DOCS_CONFIG_NAME="doxygen_tree.config"
DOCS_DIR="doc"
inherit docs toolchain-funcs
DESCRIPTION="An STL-like tree class"
HOMEPAGE="https://github.com/kpeeters/tree.hh"
SRC_URI="https://github.com/kpeeters/tree.hh/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}.hh-${PV}"
LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
src_configure() {
tc-export CXX
}
src_compile() {
docs_compile
}
src_test() {
cd src || die
emake
emake run_tests
}
src_install() {
doheader src/tree.hh src/tree_util.hh
dodoc -r examples
einstalldocs
}