Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Sep 2015 10:28:15 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r397049 - in head/devel: . libmtdev libmtdev/files
Message-ID:  <201509161028.t8GASF8n026912@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Wed Sep 16 10:28:14 2015
New Revision: 397049
URL: https://svnweb.freebsd.org/changeset/ports/397049

Log:
  devel/libmtdev: add new port
  
  PR:		196978
  Approved by:	hselasky
  
  mtdev is a stand-alone library which transforms all variants of
  kernel MT events to the slotted type B protocol. The events put into
  mtdev may be from any MT device, specifically type A without contact
  tracking, type A with contact tracking, or type B with contact
  tracking. See Linux kernel documentation for further details.
  
  http://bitmath.org/code/mtdev/

Added:
  head/devel/libmtdev/
  head/devel/libmtdev/Makefile   (contents, props changed)
  head/devel/libmtdev/distinfo   (contents, props changed)
  head/devel/libmtdev/files/
  head/devel/libmtdev/files/patch-src_common.h   (contents, props changed)
  head/devel/libmtdev/pkg-descr   (contents, props changed)
  head/devel/libmtdev/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile   (contents, props changed)

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Sep 16 10:27:37 2015	(r397048)
+++ head/devel/Makefile	Wed Sep 16 10:28:14 2015	(r397049)
@@ -1214,6 +1214,7 @@
     SUBDIR += libmpsse
     SUBDIR += libmsiecf
     SUBDIR += libmsocket
+    SUBDIR += libmtdev
     SUBDIR += libmtrie
     SUBDIR += libnaji
     SUBDIR += libnfc

Added: head/devel/libmtdev/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libmtdev/Makefile	Wed Sep 16 10:28:14 2015	(r397049)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	mtdev
+PORTVERSION=	1.1.5
+CATEGORIES=	devel
+MASTER_SITES=	http://bitmath.org/code/${PORTNAME}/
+PKGNAMEPREFIX=	lib
+
+MAINTAINER=	hselasky@FreeBSD.org
+COMMENT=	Multitouch Protocol Translation Library
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+BUILD_DEPENDS=	v4l_compat>=1.0.20110603:${PORTSDIR}/multimedia/v4l_compat
+RUN_DEPENDS=	v4l_compat>=1.0.20110603:${PORTSDIR}/multimedia/v4l_compat
+
+USES=		libtool pathfix tar:bz2
+GNU_CONFIGURE=	yes
+CPPFLAGS+=	-I${LOCALBASE}/include # v4l_compat
+INSTALL_TARGET=	install-strip
+USE_LDCONFIG=	yes
+
+.include <bsd.port.mk>

Added: head/devel/libmtdev/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libmtdev/distinfo	Wed Sep 16 10:28:14 2015	(r397049)
@@ -0,0 +1,2 @@
+SHA256 (mtdev-1.1.5.tar.bz2) = 6677d5708a7948840de734d8b4675d5980d4561171c5a8e89e54adf7a13eba7f
+SIZE (mtdev-1.1.5.tar.bz2) = 274162

Added: head/devel/libmtdev/files/patch-src_common.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libmtdev/files/patch-src_common.h	Wed Sep 16 10:28:14 2015	(r397049)
@@ -0,0 +1,11 @@
+--- src/common.h.orig	2013-07-31 17:25:50 UTC
++++ src/common.h
+@@ -33,7 +33,7 @@
+ 
+ #include <mtdev-mapping.h>
+ #include <mtdev-plumbing.h>
+-#include <malloc.h>
++#include <stdlib.h>
+ #include <string.h>
+ #include <errno.h>
+ 

Added: head/devel/libmtdev/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libmtdev/pkg-descr	Wed Sep 16 10:28:14 2015	(r397049)
@@ -0,0 +1,7 @@
+mtdev is a stand-alone library which transforms all variants of kernel
+MT events to the slotted type B protocol. The events put into mtdev
+may be from any MT device, specifically type A without contact
+tracking, type A with contact tracking, or type B with contact
+tracking. See Linux kernel documentation for further details.
+
+WWW: http://bitmath.org/code/mtdev/

Added: head/devel/libmtdev/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libmtdev/pkg-plist	Wed Sep 16 10:28:14 2015	(r397049)
@@ -0,0 +1,9 @@
+bin/mtdev-test
+include/mtdev-mapping.h
+include/mtdev-plumbing.h
+include/mtdev.h
+lib/libmtdev.a
+lib/libmtdev.so
+lib/libmtdev.so.1
+lib/libmtdev.so.1.0.0
+libdata/pkgconfig/mtdev.pc



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