You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
791 B
35 lines
791 B
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
|
|
inherit cmake-utils
|
|
|
|
MY_PN="unittest-cpp"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DESCRIPTION="A lightweight unit testing framework for C++"
|
|
HOMEPAGE="https://unittest-cpp.github.io/"
|
|
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_prepare() {
|
|
sed -i '/run unit tests as post build step/,/Running unit tests/d' \
|
|
CMakeLists.txt || die
|
|
use test || sed -i \
|
|
'/build the test runner/,/target_link_libraries(TestUnitTest++ UnitTest++/d' \
|
|
CMakeLists.txt || die
|
|
cmake-utils_src_prepare
|
|
}
|
|
|
|
src_test() {
|
|
"${BUILD_DIR}/TestUnitTest++" || die "Tests failed"
|
|
}
|