dev-libs/libmodbus - 3.2.0 (gentoo)

Search

Install

Install this version:

emerge -a =dev-libs/libmodbus-3.2.0

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-libs/libmodbus-3.2.0

Or alternatively:

emerge --autounmask-write -a =dev-libs/libmodbus-3.2.0

Package Information

Description:
Modbus library which supports RTU communication over a serial line or a TCP link
Homepage:
https://libmodbus.org/
License:
LGPL-3

Ebuild Details

Version EAPI Keywords Slot
3.2.0 8 ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 0
View Raw Ebuild
# Copyright 1999-2026 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 fail at least when run via the ebuild w/ a timeout assertion being hit
# See https://github.com/stephane/libmodbus/issues/791 and https://github.com/stephane/libmodbus/pull/794
# Try again > 3.2.1
RESTRICT="test"

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
}

USE Flags

Manage flags for this package: euse -i <flag> -p dev-libs/libmodbus | euse -E <flag> -p dev-libs/libmodbus | euse -D <flag> -p dev-libs/libmodbus

Global/Standard Flags

Inherited Eclasses

Manifest for 3.2.0

Type File Size Source URLs
DIST libmodbus-3.2.0.tar.gz 491480 bytes https://github.com/stephane/libmodbus/releases/download/v3.2.0/libmodbus-3.2.0.tar.gz