2014-07-11 10:07:55 +04:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmodbus/libmodbus-3.1.1.ebuild,v 1.1 2014/07/10 15:59:24 xmw Exp $
|
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
|
|
|
|
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"
|
2014-10-01 16:52:22 +04:00
|
|
|
IUSE="static-libs"
|
2014-07-11 10:07:55 +04:00
|
|
|
|
2014-10-01 16:52:22 +04:00
|
|
|
src_configure() {
|
|
|
|
econf \
|
|
|
|
--disable-silent-rules \
|
|
|
|
$(use_enable static-libs static)
|
|
|
|
}
|
2014-07-11 10:07:55 +04:00
|
|
|
|
2014-10-01 16:52:22 +04:00
|
|
|
src_install() {
|
|
|
|
emake install DESTDIR="${D}"
|
|
|
|
dodoc AUTHORS MIGRATION NEWS README.md
|
|
|
|
use static-libs || rm "${D}"/usr/*/libmodbus.la
|
|
|
|
}
|