Revision
105456
Author
ryandesign@macports.org
Date
2013-04-20 18:46:07 -0700 (Sat, 20 Apr 2013)

Log Message

ola: maintainer update to 0.8.28 and add osc variant, on by default (#38252)

Modified Paths

Diff

Modified: trunk/dports/net/ola/Portfile (105455 => 105456)


--- trunk/dports/net/ola/Portfile	2013-04-21 00:43:53 UTC (rev 105455)
+++ trunk/dports/net/ola/Portfile	2013-04-21 01:46:07 UTC (rev 105456)
@@ -4,7 +4,7 @@
 PortSystem          1.0
 
 name                ola
-version             0.8.26
+version             0.8.28
 categories          net comms
 platforms           darwin
 license             GPL-2+ LGPL-2.1+
@@ -21,8 +21,8 @@
 homepage            http://opendmx.net/index.php/OLA
 master_sites        googlecode:open-lighting
 
-checksums           rmd160 89fd147cd9480b69a5398264e4e3c1f30fda0aa8 \
-                    sha256 3d881570ea58b6f5f49f556b2663be57d702341ee5a6287c40fa1143b49b0b99
+checksums           rmd160 f308938d38339cc0e39a03a93c3850c35bb23aa7 \
+                    sha256 20ffcdfdfafe1e197503cd142dfdcf3b38ca3ae4334738d2c9288808684a362c
 
 depends_build       port:pkgconfig
 
@@ -30,7 +30,8 @@
                     port:protobuf-cpp
 
 configure.args      --disable-http \
-                    --disable-libusb
+                    --disable-libusb \
+                    --disable-osc
 
 variant python26 conflicts python27 description {Enable the Python 2.6 API} {
     depends_lib-append      port:py26-protobuf
@@ -49,12 +50,17 @@
     configure.args-delete   --disable-http
 }
 
+variant osc description {Build with OSC support} {
+    depends_lib-append      port:liblo
+    configure.args-delete   --disable-osc
+}
+
 variant libusb description {Build with libusb support} {
     depends_lib-append      port:libusb
     configure.args-delete   --disable-libusb
 }
 
-default_variants    +http +libusb
+default_variants    +http +osc +libusb
 
 if {![variant_isset python26]} {
     default_variants        +python27