Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Jul 2018 09:11:26 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r475352 - in head/misc: . openhmd openhmd/files
Message-ID:  <201807260911.w6Q9BQKu090962@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Thu Jul 26 09:11:26 2018
New Revision: 475352
URL: https://svnweb.freebsd.org/changeset/ports/475352

Log:
  New port: misc/openhmd: API and drivers for immersive technology

Added:
  head/misc/openhmd/
  head/misc/openhmd/Makefile   (contents, props changed)
  head/misc/openhmd/distinfo   (contents, props changed)
  head/misc/openhmd/files/
  head/misc/openhmd/files/patch-CMakeLists.txt   (contents, props changed)
  head/misc/openhmd/pkg-descr   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Thu Jul 26 09:07:52 2018	(r475351)
+++ head/misc/Makefile	Thu Jul 26 09:11:26 2018	(r475352)
@@ -303,6 +303,7 @@
     SUBDIR += opencyc
     SUBDIR += openhab2
     SUBDIR += openhab2-addons
+    SUBDIR += openhmd
     SUBDIR += openmvg
     SUBDIR += openr2
     SUBDIR += orange3

Added: head/misc/openhmd/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhmd/Makefile	Thu Jul 26 09:11:26 2018	(r475352)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	OpenHMD
+DISTVERSION=	0.2.0-215
+DISTVERSIONSUFFIX=	-g6f91c10
+CATEGORIES=	misc
+MASTER_SITES=	CHEESESHOP
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	API and drivers for immersive technology
+
+LICENSE=	BSL
+xLICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	libhidapi.so:comms/hidapi
+
+USES=		cmake:outsource
+USE_GITHUB=	yes
+USE_LDCONFIG=	yes
+
+PLIST_FILES=	include/openhmd.h \
+		lib/libopenhmd.so \
+		lib/libopenhmd.so.0 \
+		lib/libopenhmd.so.0.1.0
+
+.include <bsd.port.mk>

Added: head/misc/openhmd/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhmd/distinfo	Thu Jul 26 09:11:26 2018	(r475352)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1532595494
+SHA256 (OpenHMD-OpenHMD-0.2.0-215-g6f91c10_GH0.tar.gz) = 725f363ae2004d32594ef5b2877937718001e60908ff5dea4322bffaf4cdfc05
+SIZE (OpenHMD-OpenHMD-0.2.0-215-g6f91c10_GH0.tar.gz) = 116599

Added: head/misc/openhmd/files/patch-CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhmd/files/patch-CMakeLists.txt	Thu Jul 26 09:11:26 2018	(r475352)
@@ -0,0 +1,16 @@
+--- CMakeLists.txt.orig	2018-07-11 16:24:43 UTC
++++ CMakeLists.txt
+@@ -150,10 +150,10 @@ endif (UNIX)
+ link_libraries(${LIBS})
+ add_library(openhmd-shared SHARED ${openhmd_source_files})
+ SET_TARGET_PROPERTIES(openhmd-shared PROPERTIES OUTPUT_NAME openhmd CLEAN_DIRECT_OUTPUT 1 VERSION ${LIB_VERSION_STRING} SOVERSION ${LIB_VERSION_MAJOR})
+-add_library(openhmd-static STATIC ${openhmd_source_files})
+-SET_TARGET_PROPERTIES(openhmd-static PROPERTIES OUTPUT_NAME openhmd CLEAN_DIRECT_OUTPUT 1)
++#add_library(openhmd-static STATIC ${openhmd_source_files})
++#SET_TARGET_PROPERTIES(openhmd-static PROPERTIES OUTPUT_NAME openhmd CLEAN_DIRECT_OUTPUT 1)
+ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_DIR}/)
+ 
+ #install properties
+-install (TARGETS openhmd-shared openhmd-static DESTINATION lib)
++install (TARGETS openhmd-shared DESTINATION lib)
+ install (FILES include/openhmd.h DESTINATION include)

Added: head/misc/openhmd/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/openhmd/pkg-descr	Thu Jul 26 09:11:26 2018	(r475352)
@@ -0,0 +1,4 @@
+This project aims to provide a Free and Open Source API and drivers for
+immersive technology, such as head mounted displays with built in head tracking.
+
+WWW: https://github.com/OpenHMD/OpenHMD



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807260911.w6Q9BQKu090962>