From owner-svn-ports-head@freebsd.org Thu Jan 21 22:58:09 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 334AAA8CDFA; Thu, 21 Jan 2016 22:58:09 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1215D1175; Thu, 21 Jan 2016 22:58:09 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0LMw8km016816; Thu, 21 Jan 2016 22:58:08 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0LMw7M5016810; Thu, 21 Jan 2016 22:58:07 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601212258.u0LMw7M5016810@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 21 Jan 2016 22:58:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406884 - in head/x11: . libfakekey libfakekey/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jan 2016 22:58:09 -0000 Author: rakuco Date: Thu Jan 21 22:58:07 2016 New Revision: 406884 URL: https://svnweb.freebsd.org/changeset/ports/406884 Log: New port: x11/libfakekey. libfakekey is a simple library for converting UTF-8 characters into 'fake' X key-presses. WWW: https://www.yoctoproject.org/tools-resources/projects/matchbox Submitted by: Tobias Berner to the area51 KDE repository Added: head/x11/libfakekey/ head/x11/libfakekey/Makefile (contents, props changed) head/x11/libfakekey/distinfo (contents, props changed) head/x11/libfakekey/files/ head/x11/libfakekey/files/patch-tests_Makefile.in (contents, props changed) head/x11/libfakekey/pkg-descr (contents, props changed) head/x11/libfakekey/pkg-plist (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Thu Jan 21 22:24:47 2016 (r406883) +++ head/x11/Makefile Thu Jan 21 22:58:07 2016 (r406884) @@ -159,6 +159,7 @@ SUBDIR += libdmx SUBDIR += libdnd SUBDIR += libexo + SUBDIR += libfakekey SUBDIR += libfm SUBDIR += libfm-extra SUBDIR += libgnome Added: head/x11/libfakekey/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/libfakekey/Makefile Thu Jan 21 22:58:07 2016 (r406884) @@ -0,0 +1,19 @@ +# Created by: Tobias Berner +# $FreeBSD$ + +PORTNAME= libfakekey +PORTVERSION= 0.1 +CATEGORIES= x11 kde +MASTER_SITES= http://downloads.yoctoproject.org/releases/matchbox/${PORTNAME}/${PORTVERSION}/ + +MAINTAINER= kde@FreeBSD.org +COMMENT= X virtual keyboard library + +LICENSE= LGPL20+ + +USES= libtool pathfix pkgconfig +USE_XORG= x11 xtst +GNU_CONFIGURE= YES +INSTALL_TARGET= install-strip + +.include Added: head/x11/libfakekey/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/libfakekey/distinfo Thu Jan 21 22:58:07 2016 (r406884) @@ -0,0 +1,2 @@ +SHA256 (libfakekey-0.1.tar.gz) = 33f55905d6680aa4fba7c5c5809ae16a4220d827ddb655d7afb08c623dbdba82 +SIZE (libfakekey-0.1.tar.gz) = 311139 Added: head/x11/libfakekey/files/patch-tests_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/libfakekey/files/patch-tests_Makefile.in Thu Jan 21 22:58:07 2016 (r406884) @@ -0,0 +1,13 @@ +--- tests/Makefile.in.orig 2005-12-08 13:45:02 UTC ++++ tests/Makefile.in +@@ -61,8 +61,8 @@ LTCOMPILE = $(LIBTOOL) --tag=CC --mode=c + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) + CCLD = $(CC) +-LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) -o $@ ++LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(X11_CFLAGS) \ ++ $(AM_LDFLAGS) $(LDFLAGS) $(X11_LIBS) -o $@ + SOURCES = fakekey-test.c + DIST_SOURCES = fakekey-test.c + ETAGS = etags Added: head/x11/libfakekey/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/libfakekey/pkg-descr Thu Jan 21 22:58:07 2016 (r406884) @@ -0,0 +1,4 @@ +libfakekey is a simple library for converting UTF-8 characters into 'fake' X +key-presses. + +WWW: https://www.yoctoproject.org/tools-resources/projects/matchbox Added: head/x11/libfakekey/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/libfakekey/pkg-plist Thu Jan 21 22:58:07 2016 (r406884) @@ -0,0 +1,6 @@ +include/fakekey/fakekey.h +lib/libfakekey.a +lib/libfakekey.so +lib/libfakekey.so.0 +lib/libfakekey.so.0.0.1 +libdata/pkgconfig/libfakekey.pc