mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
26 lines
569 B
Bash
26 lines
569 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson-multilib
|
|
|
|
DESCRIPTION="Implementation of the LAN eXtensions for Instrumentation (LXI)"
|
|
HOMEPAGE="https://github.com/lxi-tools/liblxi"
|
|
SRC_URI="https://github.com/lxi-tools/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="zeroconf"
|
|
|
|
RDEPEND="
|
|
>=net-libs/libtirpc-1.3.2
|
|
>=dev-libs/libxml2-2.9.14-r1
|
|
zeroconf? ( >=net-dns/avahi-0.8-r5 )
|
|
"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
BDEPEND="virtual/pkgconfig"
|