svn commit: r432806 - in head/devel: . libudev-devd libudev-devd/files

Baptiste Daroussin bapt at FreeBSD.org
Sun Jan 29 23:14:25 UTC 2017


Author: bapt
Date: Sun Jan 29 23:14:23 2017
New Revision: 432806
URL: https://svnweb.freebsd.org/changeset/ports/432806

Log:
  libudev-compatible interface for devd
  
  Intended to work with xorg-server and libinput
  
  WWW: https://github.com/FreeBSDDesktop/libudev-devd

Added:
  head/devel/libudev-devd/
  head/devel/libudev-devd/Makefile   (contents, props changed)
  head/devel/libudev-devd/distinfo   (contents, props changed)
  head/devel/libudev-devd/files/
  head/devel/libudev-devd/files/patch-utils.h   (contents, props changed)
  head/devel/libudev-devd/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jan 29 23:13:59 2017	(r432805)
+++ head/devel/Makefile	Sun Jan 29 23:14:23 2017	(r432806)
@@ -1448,6 +1448,7 @@
     SUBDIR += libtpl
     SUBDIR += libtuntap
     SUBDIR += libublio
+    SUBDIR += libudev-devd
     SUBDIR += libukcprog
     SUBDIR += libunicode
     SUBDIR += libuninum

Added: head/devel/libudev-devd/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libudev-devd/Makefile	Sun Jan 29 23:14:23 2017	(r432806)
@@ -0,0 +1,30 @@
+# $FreeBSD$
+
+PORTNAME=	libudev-devd
+PORTVERSION=	0.2
+CATEGORIES=	devel
+
+MAINTAINER=	x11 at FreeBSD.org
+COMMENT=	libudev-compatible interface for devd
+
+LICENSE=	BSD2CLAUSE
+
+BUILD_DEPENDS=	v4l_compat>=0:multimedia/v4l_compat
+LIB_DEPENDS=	libevdev.so:devel/libevdev
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	FreeBSDDesktop
+GH_TAGNAME=	5a9d2b9
+
+USES=		dos2unix autoreconf gmake libtool localbase pathfix pkgconfig
+USE_LDCONFIG=	yes
+GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
+
+PLIST_FILES=	include/libudev.h \
+		lib/libudev.so \
+		lib/libudev.so.0 \
+		lib/libudev.so.0.0.0 \
+		libdata/pkgconfig/libudev.pc
+
+.include <bsd.port.mk>

Added: head/devel/libudev-devd/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libudev-devd/distinfo	Sun Jan 29 23:14:23 2017	(r432806)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1485731600
+SHA256 (FreeBSDDesktop-libudev-devd-0.2-5a9d2b9_GH0.tar.gz) = 847111e0e34b434d647f7f8ce5ebf3546cea539b29e124abccfe9606492348d8
+SIZE (FreeBSDDesktop-libudev-devd-0.2-5a9d2b9_GH0.tar.gz) = 16411

Added: head/devel/libudev-devd/files/patch-utils.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libudev-devd/files/patch-utils.h	Sun Jan 29 23:14:23 2017	(r432806)
@@ -0,0 +1,13 @@
+--- utils.h.orig	2017-01-07 22:21:49 UTC
++++ utils.h
+@@ -5,8 +5,8 @@
+ #include <unistd.h>
+ 
+ 
+-#define	ENABLE_TRACE
+-#define	LOG_LEVEL       1
++/* #define	ENABLE_TRACE */
++#define	LOG_LEVEL       0
+ 
+ /*
+ #ifndef	LOG_LEVEL

Added: head/devel/libudev-devd/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libudev-devd/pkg-descr	Sun Jan 29 23:14:23 2017	(r432806)
@@ -0,0 +1,5 @@
+libudev-compatible interface for devd
+
+Intended to work with xorg-server and libinput
+
+WWW: https://github.com/FreeBSDDesktop/libudev-devd


More information about the svn-ports-head mailing list