FreeBSD Bugzilla – Attachment 145838 Details for
Bug 189222
New port: comms/owfs, software for communicating with Dallas/Maxim 1-Wire network
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
owfs 2.9p5 with stagefixes+pythonfix+cleanups+new options
owfs.shar (text/plain), 15.12 KB, created by
Johan Ström
on 2014-08-15 20:36:29 UTC
(
hide
)
Description:
owfs 2.9p5 with stagefixes+pythonfix+cleanups+new options
Filename:
MIME Type:
Creator:
Johan Ström
Created:
2014-08-15 20:36:29 UTC
Size:
15.12 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># owfs ># owfs/distinfo ># owfs/Makefile.options ># owfs/files ># owfs/files/patch-python-version-breakage ># owfs/pkg-plist ># owfs/Makefile ># owfs/pkg-descr ># >echo c - owfs >mkdir -p owfs > /dev/null 2>&1 >echo x - owfs/distinfo >sed 's/^X//' >owfs/distinfo << '1dec9eef3594f19912bab51e88353781' >XSHA256 (owfs-2.9p5.tar.gz) = f7e11bae6cd29d58726e6d29b297834e5656d6069a407d798067ae25cb0812ea >XSIZE (owfs-2.9p5.tar.gz) = 1444365 >1dec9eef3594f19912bab51e88353781 >echo x - owfs/Makefile.options >sed 's/^X//' >owfs/Makefile.options << '5ea0e8e8eb89310d8f9e06877d22e9de' >XOPTIONS_DEFINE = OWDEBUG \ >X OWSHELL \ >X OWNET \ >X I2C \ >X OWHTTPD \ >X OWFTPD \ >X OWSERVER \ >X OWTAP \ >X OWMALLOC \ >X OWTRAFFIC \ >X OWMON \ >X OWCAPI \ >X OWPERL \ >X OWPHP \ >X OWPYTHON \ >X OWTCL \ >X PROFILING \ >X OWFS \ >X ZERO \ >X USB >X >X# Options disabled >X# PARPORT - linux/parport.h not available >X# W1 - no support on FreeBSD >X >X >XOWDEBUG_DESC= Enable debug output >XOWSHELL_DESC= Enable CLI utils >XOWNET_DESC= Enable network communication >XI2C_DESC= Enable i2c (DS2482-x00) support (UNTESTED) >XOWHTTPD_DESC= Enable owhttpd HTTP server >XOWFTPD_DESC= Enable owftpd FTP server >XOWSERVER_DESC= Enable owserver >XOWMALLOC_DESC= Enable malloc checking >XOWTRAFFIC_DESC= Enable debug bus traffic reports >XOWTAP_DESC= Enable owtap module (X11) >XOWMON_DESC= Enable owmon module (X11) >XOWCAPI_DESC= Enable C API >XOWPERL_DESC= Enable Perl binding >XOWPHP_DESC= Enable PHP binding (BROKEN) >XOWPYTHON_DESC= Enable Python binding >XOWTCL_DESC= Enable TCL binding >XPROFILING_DESC= Enable profiling (BROKEN) >XOWFS_DESC= Enable FUSE support (UNTESTED) >XZERO_DESC= Enable Zeroconf/bonjour (UNTESTED) >XUSB_DESC= Enable 1-Wire usb DS2490 support >X >X# Options disabled >X#PARPORT_DESC= Enable 1-Wire parallel port DS1410E support >X#W1_DESC=Enable w1 support >X >XOPTIONS_DEFAULT=OWDEBUG\ >X OWSHELL\ >X OWNET\ >X OWHTTPD\ >X OWFTPD\ >X OWSERVER\ >X OWCAPI\ >X USB >X >5ea0e8e8eb89310d8f9e06877d22e9de >echo c - owfs/files >mkdir -p owfs/files > /dev/null 2>&1 >echo x - owfs/files/patch-python-version-breakage >sed 's/^X//' >owfs/files/patch-python-version-breakage << 'b47f30d65e743e2a2e36900e4083103a' >Xdiff --git module/ownet/python/ownet/__init__.py module/ownet/python/ownet/__init__.py >Xindex 918abf1..fade596 100644 >X--- module/ownet/python/ownet/__init__.py >X+++ module/ownet/python/ownet/__init__.py >X@@ -38,7 +38,7 @@ from connection import Connection >X >X __author__ = 'Peter Kropf' >X __email__ = 'pkropf@gmail.com' >X-__version__ = '0.3' + '-' + '$Id$'.split()[2] >X+__version__ = '0.3' >X >X >X # >Xdiff --git module/ownet/python/ownet/connection.py module/ownet/python/ownet/connection.py >Xindex 942d224..40d0031 100644 >X--- module/ownet/python/ownet/connection.py >X+++ module/ownet/python/ownet/connection.py >X@@ -35,7 +35,7 @@ import re >X >X __author__ = 'Peter Kropf' >X __email__ = 'pkropf@gmail.com' >X-__version__ = '$Id$'.split()[2] >X+__version__ = '1.9' >X >X >X class exError(Exception): >Xdiff --git module/swig/python/ow/__init__.py module/swig/python/ow/__init__.py >Xindex 0ed9dfd..84bc115 100644 >X--- module/swig/python/ow/__init__.py >X+++ module/swig/python/ow/__init__.py >X@@ -34,7 +34,7 @@ from ow import _OW >X >X __author__ = 'Peter Kropf' >X __email__ = 'pkropf@gmail.com' >X-__version__ = _OW.version( ) + '-%s' % '$Id$'.split( )[ 2 ] >X+__version__ = _OW.version( ) >X >X >X # >Xdiff --git module/swig/python/unittest/ds1420.py module/swig/python/unittest/ds1420.py >Xindex 7766979..6c355b9 100755 >X--- module/swig/python/unittest/ds1420.py >X+++ module/swig/python/unittest/ds1420.py >X@@ -35,7 +35,7 @@ import ConfigParser >X import ow >X >X >X-__version__ = '0.0-%s' % '$Id$'.split( )[ 2 ] >X+__version__ = '0.0' >X >X if not os.path.exists( 'owtest.ini' ): >X raise IOError, 'owtest.ini' >Xdiff --git module/swig/python/unittest/ds2408.py module/swig/python/unittest/ds2408.py >Xindex a613f5e..d9f9812 100755 >X--- module/swig/python/unittest/ds2408.py >X+++ module/swig/python/unittest/ds2408.py >X@@ -42,7 +42,7 @@ import ow >X import util >X >X >X-__version__ = '0.0-%s' % '$Id$'.split( )[ 2 ] >X+__version__ = '0.0' >X >X >X if not os.path.exists( 'owtest.ini' ): >Xdiff --git module/swig/python/unittest/ds2409.py module/swig/python/unittest/ds2409.py >Xindex 0dd3f7d..3294c5c 100755 >X--- module/swig/python/unittest/ds2409.py >X+++ module/swig/python/unittest/ds2409.py >X@@ -36,7 +36,7 @@ import ConfigParser >X import ow >X >X >X-__version__ = '0.0-%s' % '$Id$'.split( )[ 2 ] >X+__version__ = '0.0' >X >X if not os.path.exists( 'owtest.ini' ): >X raise IOError, 'owtest.ini' >Xdiff --git module/swig/python/unittest/owload.py module/swig/python/unittest/owload.py >Xindex 20a9cbc..a067f47 100755 >X--- module/swig/python/unittest/owload.py >X+++ module/swig/python/unittest/owload.py >X@@ -33,7 +33,7 @@ import os >X import ConfigParser >X >X >X-__version__ = '0.0-%s' % '$Id$'.split( )[ 2 ] >X+__version__ = '0.0' >X load = True >X >X >Xdiff --git module/swig/python/unittest/owsensors.py module/swig/python/unittest/owsensors.py >Xindex 6a501b6..6735521 100755 >X--- module/swig/python/unittest/owsensors.py >X+++ module/swig/python/unittest/owsensors.py >X@@ -33,7 +33,7 @@ import ConfigParser >X import ow >X >X >X-__version__ = '0.0-%s' % '$Id$'.split( )[ 2 ] >X+__version__ = '0.0' >X load = True >X >X >Xdiff --git module/swig/python/unittest/owtest.py module/swig/python/unittest/owtest.py >Xindex 27b7e92..d3582d2 100755 >X--- module/swig/python/unittest/owtest.py >X+++ module/swig/python/unittest/owtest.py >X@@ -32,7 +32,7 @@ import glob >X import unittest >X >X >X-__version__ = '0.0-%s' % '$Id$'.split( )[ 2 ] >X+__version__ = '0.0' >X >X >X def Suite( ): >Xdiff --git module/swig/python/unittest/util.py module/swig/python/unittest/util.py >Xindex 0883811..0b7fcdc 100644 >X--- module/swig/python/unittest/util.py >X+++ module/swig/python/unittest/util.py >X@@ -24,7 +24,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. >X Utility functions for unittests. >X """ >X >X-__version__ = '0.0-%s' % '$Id$'.split( )[ 2 ] >X+__version__ = '0.0' >X >X load = False >X >X-- >X1.9.2 >X >b47f30d65e743e2a2e36900e4083103a >echo x - owfs/pkg-plist >sed 's/^X//' >owfs/pkg-plist << '5088e4b1bec25b51f12a498bdf84adff' >X%%OWCAPI%%include/owcapi.h >X%%OWCAPI%%lib/libowcapi-2.9.so.5 >X%%OWCAPI%%lib/libowcapi-2.9.so.5.0.0 >X%%OWCAPI%%lib/libowcapi.so >X%%OWFS%%bin/owfs >X%%OWFTPD%%bin/owftpd >X%%OWHTTPD%%bin/owhttpd >X%%OWMON%%bin/owmon >X%%OWNETLIB%%include/ownetapi.h >X%%OWNETLIB%%lib/libownet-2.9.so.5 >X%%OWNETLIB%%lib/libownet-2.9.so.5.0.0 >X%%OWNETLIB%%lib/libownet.so >X%%OWNETPERL%%%%PERL5_MAN3%%/OWNet.3.gz >X%%OWNETPERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/OWNet/.packlist >X%%OWNETPERL%%%%SITE_PERL%%/OWNet.pm >X%%OWNETPERL%%@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/OWNet >X%%OWNETPYTHON%%%%PYTHON_SITELIBDIR%%/ownet-0.3-py2.7.egg-info >X%%OWNETPYTHON%%%%PYTHON_SITELIBDIR%%/ownet/__init__.py >X%%OWNETPYTHON%%%%PYTHON_SITELIBDIR%%/ownet/__init__.pyc >X%%OWNETPYTHON%%%%PYTHON_SITELIBDIR%%/ownet/connection.py >X%%OWNETPYTHON%%%%PYTHON_SITELIBDIR%%/ownet/connection.pyc >X%%OWNETPYTHON%%@dirrmtry %%PYTHON_SITELIBDIR%%/ownet >X%%OWPERL%%%%SITE_PERL%%/%%PERL_ARCH%%/OW.pm >X%%OWPERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/OW/.packlist >X%%OWPERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/OW/OW.so >X%%OWPERL%%@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/OW >X%%OWPYTHON%%%%PYTHON_SITELIBDIR%%/ow-2.9p5-py2.7.egg-info >X%%OWPYTHON%%%%PYTHON_SITELIBDIR%%/ow/_OW.so >X%%OWPYTHON%%%%PYTHON_SITELIBDIR%%/ow/__init__.py >X%%OWPYTHON%%%%PYTHON_SITELIBDIR%%/ow/__init__.pyc >X%%OWPYTHON%%@dirrmtry %%PYTHON_SITELIBDIR%%/ow >X%%OWSERVER%%bin/owserver >X%%OWSHELL%%bin/owdir >X%%OWSHELL%%bin/owexist >X%%OWSHELL%%bin/owget >X%%OWSHELL%%bin/owpresent >X%%OWSHELL%%bin/owread >X%%OWSHELL%%bin/owwrite >X%%OWTAP%%bin/owtap >X%%OWTCL%%@dirrm lib/owtcl-1.0 >X%%OWTCL%%lib/owtcl-1.0/ow-1.0.so >X%%OWTCL%%lib/owtcl-1.0/ow.so >X%%OWTCL%%lib/owtcl-1.0/ow.tcl >X%%OWTCL%%lib/owtcl-1.0/pkgIndex.tcl >Xbin/owexternal >Xinclude/owfs_config.h >Xlib/libow-2.9.so.5 >Xlib/libow-2.9.so.5.0.0 >Xlib/libow.so >Xman/man1/libowcapi.1.gz >Xman/man1/libownet.1.gz >Xman/man1/owcapi.1.gz >Xman/man1/owdir.1.gz >Xman/man1/owfs.1.gz >Xman/man1/owftpd.1.gz >Xman/man1/owget.1.gz >Xman/man1/owhttpd.1.gz >Xman/man1/owmon.1.gz >Xman/man1/ownet.1.gz >Xman/man1/ownetapi.1.gz >Xman/man1/ownetlib.1.gz >Xman/man1/owpresent.1.gz >Xman/man1/owread.1.gz >Xman/man1/owserver.1.gz >Xman/man1/owshell.1.gz >Xman/man1/owtap.1.gz >Xman/man1/owwrite.1.gz >Xman/man3/DS1427.3.gz >Xman/man3/DS1821.3.gz >Xman/man3/DS1822.3.gz >Xman/man3/DS1825.3.gz >Xman/man3/DS18B20.3.gz >Xman/man3/DS18S20.3.gz >Xman/man3/DS1904.3.gz >Xman/man3/DS1920.3.gz >Xman/man3/DS1921.3.gz >Xman/man3/DS1963L.3.gz >Xman/man3/DS1963S.3.gz >Xman/man3/DS1971.3.gz >Xman/man3/DS1977.3.gz >Xman/man3/DS1982.3.gz >Xman/man3/DS1982U.3.gz >Xman/man3/DS1985.3.gz >Xman/man3/DS1985U.3.gz >Xman/man3/DS1986.3.gz >Xman/man3/DS1986U.3.gz >Xman/man3/DS1990A.3.gz >Xman/man3/DS1991.3.gz >Xman/man3/DS1992.3.gz >Xman/man3/DS1993.3.gz >Xman/man3/DS1994.3.gz >Xman/man3/DS1995.3.gz >Xman/man3/DS1996.3.gz >Xman/man3/DS2401.3.gz >Xman/man3/DS2404.3.gz >Xman/man3/DS2404S.3.gz >Xman/man3/DS2405.3.gz >Xman/man3/DS2406.3.gz >Xman/man3/DS2407.3.gz >Xman/man3/DS2408.3.gz >Xman/man3/DS2409.3.gz >Xman/man3/DS2411.3.gz >Xman/man3/DS2413.3.gz >Xman/man3/DS2415.3.gz >Xman/man3/DS2417.3.gz >Xman/man3/DS2423.3.gz >Xman/man3/DS2430A.3.gz >Xman/man3/DS2431.3.gz >Xman/man3/DS2433.3.gz >Xman/man3/DS2436.3.gz >Xman/man3/DS2437.3.gz >Xman/man3/DS2438.3.gz >Xman/man3/DS2450.3.gz >Xman/man3/DS2502-E48.3.gz >Xman/man3/DS2502-UNW.3.gz >Xman/man3/DS2502.3.gz >Xman/man3/DS2505-UNW.3.gz >Xman/man3/DS2505.3.gz >Xman/man3/DS2506-UNW.3.gz >Xman/man3/DS2506.3.gz >Xman/man3/DS2720.3.gz >Xman/man3/DS2740.3.gz >Xman/man3/DS2751.3.gz >Xman/man3/DS2755.3.gz >Xman/man3/DS2756.3.gz >Xman/man3/DS2760.3.gz >Xman/man3/DS2761.3.gz >Xman/man3/DS2762.3.gz >Xman/man3/DS2770.3.gz >Xman/man3/DS2780.3.gz >Xman/man3/DS2781.3.gz >Xman/man3/DS2788.3.gz >Xman/man3/DS2804.3.gz >Xman/man3/DS2890.3.gz >Xman/man3/DS28E04.3.gz >Xman/man3/DS28EA00.3.gz >Xman/man3/DS28EC20.3.gz >Xman/man3/EDS.3.gz >Xman/man3/EDS0064.3.gz >Xman/man3/EDS0065.3.gz >Xman/man3/EDS0066.3.gz >Xman/man3/EDS0067.3.gz >Xman/man3/EDS0068.3.gz >Xman/man3/EDS0070.3.gz >Xman/man3/EDS0071.3.gz >Xman/man3/EDS0072.3.gz >Xman/man3/EDS0080.3.gz >Xman/man3/EDS0082.3.gz >Xman/man3/EDS0083.3.gz >Xman/man3/EDS0085.3.gz >Xman/man3/EDS0090.3.gz >Xman/man3/EEEF.3.gz >Xman/man3/LCD.3.gz >Xman/man3/MAX31820.3.gz >Xman/man3/MAX31826.3.gz >Xman/man3/MAX31850.3.gz >Xman/man3/MAX31851.3.gz >Xman/man3/OWNet.3.gz >Xman/man3/Thermachron.3.gz >Xman/man3/UVI.3.gz >Xman/man3/mAM001.3.gz >Xman/man3/mCM001.3.gz >Xman/man3/mDI001.3.gz >Xman/man3/mRS001.3.gz >Xman/man3/owperl.3.gz >Xman/man5/owfs.5.gz >Xman/man5/owfs.conf.5.gz >Xman/mann/ow.n.gz >Xman/mann/owtcl.n.gz >5088e4b1bec25b51f12a498bdf84adff >echo x - owfs/Makefile >sed 's/^X//' >owfs/Makefile << '78f60c1d940cc68c11d6f085bcf88943' >X# Created by: Johan Strom <johna@stromnet.se> >X# $FreeBSD$ >X >XPORTNAME= owfs >XPORTVERSION= 2.9p5 >XCATEGORIES= comms >XMASTER_SITES= SF/owfs/owfs/${PORTVERSION} >X >XMAINTAINER= johan@stromnet.se >XCOMMENT= OWFS -- 1-Wire file system >X >XLICENSE= GPLv2 >X >XUSES= libtool >XLIBTOOLIZE_ARGS=-c -f -i >XACLOCAL_ARGS= -I${LOCALBASE}/share/aclocal >X >XUSE_AUTOTOOLS= libtoolize aclocal autoheader autoconf automake >XAUTOMAKE_ARGS= --add-missing >XGNU_CONFIGURE= On >X >X# This takes a few seconds so give the user some notice >Xpre-configure: >X ${MKDIR} ${WRKSRC}/m4 >X @echo "Preparing build using autotools..." >X >X.include "Makefile.options" >X >XOPTIONS_SUB=yes >X >XCONFIGURE_ARGS= --enable-owlib >X >X# Linux specific kernel driver >XCONFIGURE_ARGS+= --disable-w1 >XCONFIGURE_ARGS+= --disable-parport >X >XOWDEBUG_CONFIGURE_ENABLE= debug >XOWSHELL_CONFIGURE_ENABLE= owshell >XOWNET_CONFIGURE_ENABLE= ownet >X >XI2C_CONFIGURE_ENABLE= i2c >XOWHTTPD_CONFIGURE_ENABLE= owhttpd >XOWFTPD_CONFIGURE_ENABLE= owftpd >XOWSERVER_CONFIGURE_ENABLE= owserver >X >XOWTAP_CONFIGURE_ENABLE= owtap >XOWTAP_USE= tk=yes tk_wrapper=yes >X >XOWMALLOC_CONFIGURE_ENABLE= owmalloc >XOWTRAFFIC_CONFIGURE_ENABLE= owtraffic >X >XOWMON_CONFIGURE_ENABLE= owmon >XOWMON_USE= tk=yes tk_wrapper=yes >X >XOWCAPI_CONFIGURE_ENABLE= owcapi >X >XOWPERL_CONFIGURE_ENABLE= owperl >XOWPERL_USES= perl5 >XOWPERL_USE= perl5=build,run,fixpacklist >X >X# Broken/untested >XOWPHP_CONFIGURE_ENABLE= owphp >X >XOWPYTHON_CONFIGURE_ENABLE= owpython >XOWPYTHON_USES= python >X >X# Additional CONFIGURE_ARGS is done below >XOWTCL_CONFIGURE_ENABLE= owtcl >XOWTCL_USES= tcl >X >X# XXX Broken due to -lgcc_p >XPROFILING_CONFIGURE_ENABLE= profiling >X >X# XXX: Not tested, it compiles, but not sure if fusefs actually works >XOWFS_CONFIGURE_ENABLE= owfs >XOWFS_USES= fuse >X >XZERO_CONFIGURE_ENABLE= zero >XUSB_CONFIGURE_ENABLE= usb >XUSB_LDFLAGS= -lusb >X >X.include <bsd.port.options.mk> >X >X# If OW Network and C API is requested, build libownet as well >X.if ${PORT_OPTIONS:MOWNET} && ${PORT_OPTIONS:MOWCAPI} >XCONFIGURE_ARGS+= --enable-ownetlib >XPLIST_SUB+= OWNETLIB="" >X.else >XCONFIGURE_ARGS+= --disable-ownetlib >XPLIST_SUB+= OWNETLIB="@comment " >X.endif >X >X# If OW Network and Perl is requested, we get ownet perl files >X.if ${PORT_OPTIONS:MOWPERL} && ${PORT_OPTIONS:MOWNET} >XPLIST_SUB+= OWNETPERL="" >X.else >XPLIST_SUB+= OWNETPERL="@comment " >X.endif >X >X# If OW Network and Python is requested, we get ownet python files >X.if ${PORT_OPTIONS:MOWPYTHON} && ${PORT_OPTIONS:MOWNET} >XPLIST_SUB+= OWNETPYTHON="" >X.else >XPLIST_SUB+= OWNETPYTHON="@comment " >X.endif >X >X# If Perl, Python or PHP is requested, enable SWIG >X.if ${PORT_OPTIONS:MOWPERL} || ${PORT_OPTIONS:MOWPYTHON} || ${PORT_OPTIONS:MOWPHP} >XBUILD_DEPENDS+= ${LOCALBASE}/bin/swig2.0:${PORTSDIR}/devel/swig20 >XCONFIGURE_ARGS+= --enable-swig SWIG=${LOCALBASE}/bin/swig2.0 >X.else >XCONFIGURE_ARGS+= --disable-swig >X.endif >X >X.include <bsd.port.pre.mk> >X >X.if ${PORT_OPTIONS:MOWTCL} >XCONFIGURE_ARGS+= --enable-owtcl --with-tcl=${TCL_LIBDIR} >X.endif >X >X# Workaround for different stage-problems >Xpost-install: >X ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libow-2.9.so.5.0.0 >X.if ${PORT_OPTIONS:MOWCAPI} >X ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libowcapi-2.9.so.5.0.0 >X.if ${PORT_OPTIONS:MOWNET} >X ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libownet-2.9.so.5.0.0 >X.endif >X.endif >X.if ${PORT_OPTIONS:MOWPYTHON} >X (cd ${STAGEDIR}${PREFIX} \ >X && ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ >X -d ${PYTHONPREFIX_SITELIBDIR} -f ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;}) >X ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/python2.7/site-packages/ow/_OW.so >X.endif >X.if ${PORT_OPTIONS:MOWPERL} >X @${RM} -f ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod* >X ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/perl5/site_perl/5.16/mach/auto/OW/OW.so >X.endif >X.if ${PORT_OPTIONS:MOWTCL} >X ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/owtcl-1.0/ow-1.0.so >X.endif >X >X.include <bsd.port.post.mk> >78f60c1d940cc68c11d6f085bcf88943 >echo x - owfs/pkg-descr >sed 's/^X//' >owfs/pkg-descr << 'fa5a957eb56e5fde7ffc9fbd48ab6ba4' >XOWFS -- 1-Wire file system. >XOWFS is an easy way to use the powerful 1-wire system of Dallas/Maxim. >X >XOWFS is a simple and flexible program to monitor and control the physical >Xenvironment. You can write scripts to read temperature, flash lights, write >Xto an LCD, log and graph, ... >X >XWWW: http://www.owfs.org/ >fa5a957eb56e5fde7ffc9fbd48ab6ba4 >exit >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 189222
:
142226
|
142227
|
142228
|
145621
|
145622
|
145815
|
145822
|
145838
|
145839
|
145846
|
145857
|
145859