blob: dc3a2870141f0e9212dbf8713cef69c6b3cacab4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Modbus library which supports RTU communication over a serial line or a TCP link"
HOMEPAGE="http://libmodbus.org/"
SRC_URI="http://libmodbus.org/releases/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="static-libs test doc"
RDEPEND=""
DEPEND="doc? ( app-text/asciidoc
app-text/xmlto )"
PATCHES=( "${FILESDIR}"/${P}-doc.patch )
src_configure() {
econf \
--disable-silent-rules \
$(use_enable test tests) \
$(use_enable static-libs static) \
$(use_with doc documentation)
}
src_install() {
default
use static-libs || rm "${D}"/usr/*/libmodbus.la
}
|