mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
Running those tests with client server are meant to be run manually and are not made for automated running. Closes: https://bugs.gentoo.org/941994 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
43 lines
824 B
Bash
43 lines
824 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Modbus library which supports RTU communication over a serial line or a TCP link"
|
|
HOMEPAGE="https://libmodbus.org/"
|
|
SRC_URI="https://github.com/stephane/${PN}/releases/download/v${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm ~arm64 ~ppc ppc64 ~riscv x86"
|
|
IUSE="static-libs test"
|
|
|
|
# Tests are for manual testing
|
|
RESTRICT="test"
|
|
|
|
PATCHES=( "${FILESDIR}/${PN}-3.1.11-cflags.patch" )
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
$(use_enable test tests)
|
|
$(use_enable static-libs static)
|
|
)
|
|
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
if ! use static-libs; then
|
|
find "${ED}" -name '*.la' -delete || die
|
|
fi
|
|
}
|