summaryrefslogtreecommitdiff
blob: 62b3a75727345fa15e48134df52157eea6212a19 (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
# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

DESCRIPTION="A header-only C++ library for printing colored messages to the terminal"
HOMEPAGE="https://github.com/ikalnytskyi/termcolor https://termcolor.readthedocs.io"
SRC_URI="https://github.com/ikalnytskyi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
# It's just a visual test, nothing automated / no way to detect failure in an ebuild.
RESTRICT="!test? ( test ) test"

src_configure() {
	local mycmakeargs=(
		-DTERMCOLOR_TESTS=$(usex test)
	)

	cmake_src_configure
}

src_test() {
	"${BUILD_DIR}"/test_termcolor || die
}