Date: Mon, 23 Oct 2017 06:49:04 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452692 - in head/net: . deviceatlas-enterprise-c deviceatlas-enterprise-c/files Message-ID: <201710230649.v9N6n4KQ099747@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Mon Oct 23 06:49:03 2017 New Revision: 452692 URL: https://svnweb.freebsd.org/changeset/ports/452692 Log: New port: net/deviceatlas-enterprise-c DeviceAtlas Device Detection C API DeviceAtlas provides industrial grade device identification using HTTP headers, and by adding device intelligence to HAProxy a richer configuration is possible, allowing administrators to make decisions based on device type amongst other properties. WWW: https://www.deviceatlas.com PR: 201422 Submitted by: David Carlier <dcarlier@afilias.info> Added: head/net/deviceatlas-enterprise-c/ head/net/deviceatlas-enterprise-c/Makefile (contents, props changed) head/net/deviceatlas-enterprise-c/distinfo (contents, props changed) head/net/deviceatlas-enterprise-c/files/ head/net/deviceatlas-enterprise-c/files/patch-CMakeLists.txt (contents, props changed) head/net/deviceatlas-enterprise-c/files/patch-Examples_CMakeLists.txt (contents, props changed) head/net/deviceatlas-enterprise-c/pkg-descr (contents, props changed) head/net/deviceatlas-enterprise-c/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Oct 23 06:30:34 2017 (r452691) +++ head/net/Makefile Mon Oct 23 06:49:03 2017 (r452692) @@ -99,6 +99,7 @@ SUBDIR += datapipe SUBDIR += dbeacon SUBDIR += delegate + SUBDIR += deviceatlas-enterprise-c SUBDIR += dgd SUBDIR += dgd-kernel SUBDIR += dgd-lpmud Added: head/net/deviceatlas-enterprise-c/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/deviceatlas-enterprise-c/Makefile Mon Oct 23 06:49:03 2017 (r452692) @@ -0,0 +1,40 @@ +# Created by: David Carlier +# $FreeBSD$ + +PORTNAME= deviceatlas-enterprise-c +PORTVERSION= 2.1.3 +CATEGORIES= net devel +MASTER_SITES= # + +MAINTAINER= dcarlier@afilias.info +COMMENT= DeviceAtlas Device Detection C API + +LICENSE= deviceatlas-enterprise-c-license +LICENSE_NAME= DeviceAtlas C Enterprise API License +LICENSE_TEXT= The free of charge offering has a restricted use license, for own usage only; \ + no redistribution or derivative works are permitted. \ + Contact us (http://www.deviceatlas.com/contact-us) to upgrade or to enable usage as part of a service offering. +LICENSE_PERMS= none + +LIB_DEPENDS= libpcre.so:devel/pcre + +RESTRICTED= Redistribution prohibited + +USES= cmake tar:tgz +USE_LDCONFIG= yes + +CMAKE_ARGS= -DDOCSDIR=${DOCSDIR} -DEXAMPLESDIR=${EXAMPLESDIR} +PLIST_SUB= PORTVERSION=${PORTVERSION} + +REGISTRATION_URL= https://deviceatlas.com/deviceatlas-haproxy-module + +.include <bsd.port.pre.mk> + +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +IGNORE?= you must manually fetch the DeviceAtlas Device Detection C API from ${REGISTRATION_URL} and place it in ${DISTDIR} and then run make again +.endif + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libda.so + +.include <bsd.port.post.mk> Added: head/net/deviceatlas-enterprise-c/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/deviceatlas-enterprise-c/distinfo Mon Oct 23 06:49:03 2017 (r452692) @@ -0,0 +1,3 @@ +TIMESTAMP = 1508699142 +SHA256 (deviceatlas-enterprise-c-2.1.3.tgz) = 80f5c1304a4a3cff0367ec475fba7f6fd8e039912d3c0f6dc9bb7465ee3d32e3 +SIZE (deviceatlas-enterprise-c-2.1.3.tgz) = 183663 Added: head/net/deviceatlas-enterprise-c/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/deviceatlas-enterprise-c/files/patch-CMakeLists.txt Mon Oct 23 06:49:03 2017 (r452692) @@ -0,0 +1,8 @@ +--- CMakeLists.txt.orig 2017-10-18 10:07:09 UTC ++++ CMakeLists.txt +@@ -2,3 +2,5 @@ cmake_minimum_required(VERSION 2.6) + + subdirs(Src) + subdirs(Examples) ++ ++install(DIRECTORY Documentation/ DESTINATION ${DOCSDIR}) Added: head/net/deviceatlas-enterprise-c/files/patch-Examples_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/deviceatlas-enterprise-c/files/patch-Examples_CMakeLists.txt Mon Oct 23 06:49:03 2017 (r452692) @@ -0,0 +1,11 @@ +--- Examples/CMakeLists.txt.orig 2017-10-18 10:07:09 UTC ++++ Examples/CMakeLists.txt +@@ -13,3 +13,8 @@ while (N LESS 5) + target_link_libraries(example${N} da ${LIBOMP}) + MATH(EXPR N "${N} + 1") + endwhile() ++ ++ ++file(GLOB EXAMPLES *.c *.h) ++install(TARGETS example0 example1 example2 example3 DESTINATION ${EXAMPLESDIR}) ++install(FILES ${EXAMPLES} DESTINATION ${EXAMPLESDIR}) Added: head/net/deviceatlas-enterprise-c/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/deviceatlas-enterprise-c/pkg-descr Mon Oct 23 06:49:03 2017 (r452692) @@ -0,0 +1,8 @@ +DeviceAtlas Device Detection C API + +DeviceAtlas provides industrial grade device identification using HTTP +headers, and by adding device intelligence to HAProxy a richer +configuration is possible, allowing administrators to make decisions +based on device type amongst other properties. + +WWW: https://www.deviceatlas.com Added: head/net/deviceatlas-enterprise-c/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/deviceatlas-enterprise-c/pkg-plist Mon Oct 23 06:49:03 2017 (r452692) @@ -0,0 +1,204 @@ +include/dac.h +include/dac_json.h +lib/libda.so +lib/libda.so.%%PORTVERSION%% +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/annotated.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/bc_s.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/bdwn.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/classes.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/closed.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a019442ae3fde38aa28b254b21bf9e269.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a06c2b226ae6b397baeb9aa8b26abb77e.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a06fc87d81c62e9abb8790b6e5713c55b.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a0b2696786cf079443dcb81ff69946138.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a1dddfe400c7a7d0a557b8caafbda36ec.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a1ebacd72beff98a60c877e85b1e21ad2.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a259737627eebea4cd418610d6ea8677d.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a2a4ae76b9d8f8bb018fb88e671e81828.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a2c1cf6b52f3579a1248b13e65e1abb6a.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a2eb87ba7f137f2f541eb1087722af066.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a2ebcf6fcbe7002935df4757c38a72cae.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a30b90786e2f149f1a6837074f8381414.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a31880fb78210b8960e5591499f2c4664.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a37537d673f7ac1fd1746bc0103cc0d4a.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a37b2349f4fddc3967e740304a706f621.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a407c8942e8043862125edd21cce0f1a1.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a447d58ebd472a2cb070d0c64666aaaf2.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a45db63867cccdb89c499340d44dc8045.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a476aa987cf78c72941b9fefee6e55b10.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a4f9a8f62db1cad7693aced372b8ff3b9.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a5975cae90cbcdc8fc99615c3184ae2c6.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a5a9839703e6a36576768b0277fe67e07.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a631d0feb27811b79aa1147f508711172.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a65adbd5b91aa8843311b71f8be70463c.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a69f0a2059c442541cdfe75e5afceac63.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a6f206c4d51ea77bf37c48170a609f94d.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a6ff9e48dcc53b7031e589b5ee2c4ad67.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a71e811099fb245c5a15fd71668ce557c.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a748f32745153bab132e432ecc4df7025.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a74e80ff424218e041f9f966420fb5758.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a7d3b5f08173de85ce70e081cba116511.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a803f3943e026baf1bd5b272962e879b3.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a874c5b0464d4b2927a57ba9f70e8f196.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a89bb11ba0d89ed51f7852fd439ab5e54.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a8a701927c6b9a395fcef0705d6a3f16a.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a8e9a7b02f27bf102d8f740e9db36eab5.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a9179c4a47073592090f7639f1d3964fb.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a957e72f600e612b09e326f8e86bb8d58.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a999a28d6f45b7fcdb923eb1c76e15d33.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_a9aa5c02de0e81aaa1dae0bf01b520947.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_aa25edbb96d687806cc49213712b67491.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_aafa13736dc93b9ba58e5329572bcdb50.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_aafaf96714babab0784d0f8454c3ed8c2.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_ab65fa0e3190b5e97da79ecb7fd2cfde0.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_ac1876ca873a2a64bf76cb406425f687b.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_ac1fe394594c7c234ce1f1a190c9e3b9b.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_acdfc7c417cd78e6f9f0dfc33f6a3f278.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_ad5b8c95dbff45aca624b701051bb955f.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_ad5f26e5ed4b0dc16f935a82a65c9d509.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_adcb1c8fec0ee9bf80ccaa4f289bcc204.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_adf764cbdea00d65edcd07bb9953ad2b7.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_ae5902fa6e81257a7549d845a5c781910.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_ae6a83d2bee98adb88bf65dc0e8aa5579.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_aeb1e01f371623217f7a60625b078cc2f.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_afe6c57eda28e859a4fbb334eb560bd29.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dac_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dir_413f4e031a85da0d68269c6fd2f76e1c.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/doxygen.css +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/doxygen.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/dynsections.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/files.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2blank.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2cl.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2doc.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2folderclosed.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2folderopen.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2lastnode.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2link.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2mlastnode.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2mnode.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2mo.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2node.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2ns.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2plastnode.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2pnode.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2splitbar.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/ftv2vertline.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/functions.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/functions_vars.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/globals.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/globals_enum.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/globals_eval.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/globals_func.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/globals_type.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/index.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/jquery.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/nav_f.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/nav_g.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/nav_h.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/open.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_0.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_0.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_1.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_1.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_2.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_2.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_3.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_3.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_4.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_4.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_5.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_5.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_6.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_6.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_7.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_7.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_8.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_8.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_9.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_9.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_a.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_a.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_b.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_b.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_c.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_c.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_d.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_d.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_e.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_e.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_f.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/all_f.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/classes_0.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/classes_0.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/close.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/enums_0.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/enums_0.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/enumvalues_0.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/enumvalues_0.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/files_0.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/files_0.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/functions_0.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/functions_0.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/mag_sel.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/nomatches.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/search.css +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/search.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/search_l.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/search_m.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/search_r.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/typedefs_0.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/typedefs_0.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/typedefs_1.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/typedefs_1.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_0.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_0.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_1.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_1.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_2.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_2.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_3.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_3.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_4.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_4.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_5.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_5.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_6.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_6.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_7.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_7.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_8.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_8.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_9.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_9.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_a.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_a.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_b.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_b.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_c.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_c.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_d.html +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/search/variables_d.js +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/sync_off.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/sync_on.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/tab_a.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/tab_b.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/tab_h.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/tab_s.png +%%PORTDOCS%%%%DOCSDIR%%/ApiDocs/tabs.css +%%PORTDOCS%%%%DOCSDIR%%/README.ClientSide.html +%%PORTDOCS%%%%DOCSDIR%%/README.DeviceApi.html +%%PORTDOCS%%%%DOCSDIR%%/README.Windows.html +%%PORTDOCS%%%%DOCSDIR%%/README.html +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/daexutil.h +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example0 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example0.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example1.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example2.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example3.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example4.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/util.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710230649.v9N6n4KQ099747>