1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name eibd |
---|
7 | version 0.0.4 |
---|
8 | categories net |
---|
9 | platforms darwin |
---|
10 | |
---|
11 | maintainers uwe-arzt.de:mail |
---|
12 | |
---|
13 | description eibd provides an interface to the EIB / KNX bus |
---|
14 | long_description Eibd provides over a TCP/IP and/or unix domain sockets \ |
---|
15 | access to the EIB bus using a simple protocol. It provides \ |
---|
16 | access at layer 4 as well as to high level mangement function. \ |
---|
17 | Multiple concurrent users are supported. A special bus monitor \ |
---|
18 | mode call vBusmonitor is implemented, which delivers all \ |
---|
19 | traffic, which eibd passes, but not disturbs send activities. |
---|
20 | |
---|
21 | homepage https://www.auto.tuwien.ac.at/~mkoegler/index.php/eibd |
---|
22 | |
---|
23 | fetch.type git |
---|
24 | git.url http://www.auto.tuwien.ac.at/~mkoegler/git/bcusdk.git |
---|
25 | worksrcdir bcusdk-${version} |
---|
26 | |
---|
27 | depends_build port:pkgconfig |
---|
28 | |
---|
29 | depends_lib port:pthsem |
---|
30 | |
---|
31 | # build only eibd, if there are requests add variants |
---|
32 | pre-configure { |
---|
33 | system "cd ${worksrcpath} && aclocal -I m4 -I ${prefix}/share/aclocal && autoheader" |
---|
34 | system "cd ${worksrcpath} && automake -a --foreign && autoconf" |
---|
35 | } |
---|
36 | |
---|
37 | configure.args --enable-onlyeibd \ |
---|
38 | --enable-eibnetip \ |
---|
39 | --enable-eibnetiptunnel \ |
---|
40 | --enable-eibnetipserver |
---|
41 | |
---|