mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-18 03:23:20 -04:00
dev-cpp/rang: new package, add 3.2
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
This commit is contained in:
48
dev-cpp/rang/rang-3.2.ebuild
Normal file
48
dev-cpp/rang/rang-3.2.ebuild
Normal file
@@ -0,0 +1,48 @@
|
||||
# Copyright 2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="Minimal, header-only, modern C++ library for terminal goodies"
|
||||
HOMEPAGE="https://agauniyal.github.io/rang/"
|
||||
SRC_URI="https://github.com/agauniyal/rang/archive/refs/tags/v${PV}.tar.gz
|
||||
-> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="Unlicense"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
PATCHES="${FILESDIR}/${P}-fix-tests.patch"
|
||||
|
||||
BDEPEND="test? ( dev-cpp/doctest )"
|
||||
|
||||
src_configure() {
|
||||
cmake_src_configure
|
||||
if use test; then
|
||||
local BUILD_DIR CMAKE_USE_DIR
|
||||
BUILD_DIR="${WORKDIR}/${P}_test"
|
||||
CMAKE_USE_DIR="${S}/test"
|
||||
cmake_src_configure
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if use test; then
|
||||
local BUILD_DIR CMAKE_USE_DIR
|
||||
BUILD_DIR="${WORKDIR}/${P}_test"
|
||||
CMAKE_USE_DIR="${S}/test"
|
||||
cmake_src_compile
|
||||
fi
|
||||
}
|
||||
|
||||
src_test() {
|
||||
local BUILD_DIR CMAKE_USE_DIR
|
||||
BUILD_DIR="${WORKDIR}/${P}_test"
|
||||
CMAKE_USE_DIR="${S}/test"
|
||||
cmake_src_test
|
||||
}
|
||||
Reference in New Issue
Block a user