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.
gentoo-overlay/dev-libs/processor-trace/processor-trace-1.6.1.ebuild

27 lines
543 B

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="Intel(R) Processor Trace decoder library"
HOMEPAGE="https://github.com/01org/processor-trace"
SRC_URI="https://github.com/01org/processor-trace/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT=0
KEYWORDS="-* ~amd64"
IUSE="doc test"
DEPEND="doc? ( app-text/pandoc )"
src_configure() {
local mycmakeargs=(
-DMAN=$(usex doc)
-DPTUNIT=$(usex test)
)
cmake-utils_src_configure
}