svn commit: r432813 - in head/x11: . libwacom

Baptiste Daroussin bapt at FreeBSD.org
Sun Jan 29 23:40:33 UTC 2017


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

Log:
  Libwacom is a new library to help implement Wacom tablet settings.
  It is intended to be used by client-programs that need model
  identification.
  
  WWW: http://linuxwacom.sourceforge.net/wiki/index.php/Libwacom
  
  Obtained from:	FreeBSDDesktop github

Added:
  head/x11/libwacom/
  head/x11/libwacom/Makefile   (contents, props changed)
  head/x11/libwacom/distinfo   (contents, props changed)
  head/x11/libwacom/pkg-descr   (contents, props changed)
  head/x11/libwacom/pkg-plist   (contents, props changed)
Modified:
  head/x11/Makefile

Modified: head/x11/Makefile
==============================================================================
--- head/x11/Makefile	Sun Jan 29 23:39:28 2017	(r432812)
+++ head/x11/Makefile	Sun Jan 29 23:40:31 2017	(r432813)
@@ -184,6 +184,7 @@
     SUBDIR += liboldX
     SUBDIR += libsx
     SUBDIR += libsynaptics
+    SUBDIR += libwacom
     SUBDIR += libxcb
     SUBDIR += libxdg-basedir
     SUBDIR += libxfce4menu

Added: head/x11/libwacom/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/libwacom/Makefile	Sun Jan 29 23:40:31 2017	(r432813)
@@ -0,0 +1,25 @@
+# Created by: johalun0 at gmail.com
+# $FreeBSD$
+
+PORTNAME=	libwacom
+PORTVERSION=	0.22
+PORTREVISION=	1
+CATEGORIES=	x11
+MASTER_SITES=	https://sourceforge.net/projects/linuxwacom/files/libwacom/
+
+MAINTAINER=	x11 at FreeBSD.org
+COMMENT=	Adds tablet support to libinput
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+LIB_DEPENDS=	libgudev-1.0.so:devel/libgudev
+
+USES=		gettext-runtime gmake libtool localbase pkgconfig \
+		pathfix tar:bzip2
+USE_GNOME=	glib20
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+INSTALL_TARGET=	install-strip
+
+.include <bsd.port.mk>

Added: head/x11/libwacom/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/libwacom/distinfo	Sun Jan 29 23:40:31 2017	(r432813)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1485732922
+SHA256 (libwacom-0.22.tar.bz2) = 97c19c216cbf4a2c54a5fc4f80d5a363bfa732500f0831a345bbc8ab385720c0
+SIZE (libwacom-0.22.tar.bz2) = 462995

Added: head/x11/libwacom/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/libwacom/pkg-descr	Sun Jan 29 23:40:31 2017	(r432813)
@@ -0,0 +1,5 @@
+Libwacom is a new library to help implement Wacom tablet settings.
+It is intended to be used by client-programs that need model
+identification.
+
+WWW: http://linuxwacom.sourceforge.net/wiki/index.php/Libwacom

Added: head/x11/libwacom/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/libwacom/pkg-plist	Sun Jan 29 23:40:31 2017	(r432813)
@@ -0,0 +1,7 @@
+bin/libwacom-list-local-devices
+include/libwacom-1.0/libwacom/libwacom.h
+lib/libwacom.a
+lib/libwacom.so
+lib/libwacom.so.2
+lib/libwacom.so.2.5.0
+libdata/pkgconfig/libwacom.pc


More information about the svn-ports-all mailing list