Files
guru/sys-apps/drm_info/drm_info-2.6.0.ebuild
Takuya Wakazono 891c0556b5 sys-apps/drm_info: add 2.6.0
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
2024-02-07 19:42:03 +09:00

35 lines
699 B
Bash

# Copyright 2020-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
MY_P="${PN}-v${PV}"
DESCRIPTION="Small utility to dump info about DRM devices"
HOMEPAGE="https://gitlab.freedesktop.org/emersion/drm_info"
SRC_URI="https://gitlab.freedesktop.org/emersion/drm_info/-/archive/v${PV}/${MY_P}.tar.bz2"
S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="man +pci"
DEPEND="
dev-libs/json-c:=
x11-libs/libdrm
pci? ( sys-apps/pciutils )
"
RDEPEND="${DEPEND}"
BDEPEND="man? ( app-text/scdoc )"
src_configure() {
local emesonargs=(
$(meson_feature man man-pages)
$(meson_feature pci libpci)
)
meson_src_configure
}