2016-03-13 23:42:20 +03:00
|
|
|
# Copyright 1999-2016 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
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"
|
2016-12-20 23:43:28 +03:00
|
|
|
KEYWORDS="amd64 x86"
|
2016-03-13 23:42:20 +03:00
|
|
|
IUSE="static-libs"
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf \
|
|
|
|
--disable-silent-rules \
|
|
|
|
$(use_enable static-libs static)
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake install DESTDIR="${D}"
|
|
|
|
dodoc AUTHORS MIGRATION NEWS README.md
|
|
|
|
use static-libs || rm "${D}"/usr/*/libmodbus.la
|
|
|
|
}
|