From owner-svn-ports-all@FreeBSD.ORG Tue Jun 3 08:15:30 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 838ED600; Tue, 3 Jun 2014 08:15:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 6F5B02B3C; Tue, 3 Jun 2014 08:15:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s538FUNG031237; Tue, 3 Jun 2014 08:15:30 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s538FTKW031225; Tue, 3 Jun 2014 08:15:29 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201406030815.s538FTKW031225@svn.freebsd.org> From: Martin Wilke Date: Tue, 3 Jun 2014 08:15:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356303 - in head/comms: . libconcord libconcord/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-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jun 2014 08:15:30 -0000 Author: miwi Date: Tue Jun 3 08:15:28 2014 New Revision: 356303 URL: http://svnweb.freebsd.org/changeset/ports/356303 QAT: https://qat.redports.org/buildarchive/r356303/ Log: The concordance software suite allows you to program your Logitech Harmony remote using a configuration object retreived from the harmony website. The Logitech Harmony is a highly configuration universal remote than can control most multimedia devices. This port contains the C Libraries for the concordance framework. PR: ports/190545 Submitted by: Stephen Hurd Added: head/comms/libconcord/ head/comms/libconcord/Makefile (contents, props changed) head/comms/libconcord/distinfo (contents, props changed) head/comms/libconcord/files/ head/comms/libconcord/files/patch-configure (contents, props changed) head/comms/libconcord/pkg-descr (contents, props changed) head/comms/libconcord/pkg-plist (contents, props changed) Modified: head/comms/Makefile Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Tue Jun 3 08:07:48 2014 (r356302) +++ head/comms/Makefile Tue Jun 3 08:15:28 2014 (r356303) @@ -74,6 +74,7 @@ SUBDIR += kb SUBDIR += kermit SUBDIR += kremotecontrol + SUBDIR += libconcord SUBDIR += libfec SUBDIR += libimobiledevice SUBDIR += libirman Added: head/comms/libconcord/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/libconcord/Makefile Tue Jun 3 08:15:28 2014 (r356303) @@ -0,0 +1,26 @@ +# Created by: Stephen Hurd +# $FreeBSD$ + +PORTNAME= libconcord +PORTVERSION= 1.1 +CATEGORIES= comms +MASTER_SITES= SF/concordance/concordance/${PORTVERSION} +DISTNAME= concordance-${PORTVERSION} + +MAINTAINER= shurd@sasktel.net +COMMENT= Logitech Harmony configuration library + +LICENSE= GPLv2 + +BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconf +LIB_DEPENDS= libhidapi.so:${PORTSDIR}/comms/hidapi \ + libzip.so:${PORTSDIR}/archivers/libzip + +USE_LDCONFIG= yes +USES= tar:bzip2 libtool shared-mime-info +WRKSRC_SUBDIR= libconcord +GNU_CONFIGURE= yes +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +.include Added: head/comms/libconcord/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/libconcord/distinfo Tue Jun 3 08:15:28 2014 (r356303) @@ -0,0 +1,2 @@ +SHA256 (concordance-1.1.tar.bz2) = ca5ffbd8c0fd06d41192c1d5e3c8b964c2393ea6d3d9c5e495c1da4b2c778a05 +SIZE (concordance-1.1.tar.bz2) = 1142393 Added: head/comms/libconcord/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/libconcord/files/patch-configure Tue Jun 3 08:15:28 2014 (r356303) @@ -0,0 +1,16 @@ +--- configure.orig 2014-03-28 20:27:39.000000000 -0700 ++++ configure 2014-05-31 01:13:47.000000000 -0700 +@@ -15457,6 +15457,13 @@ + fi + LIBCONCORD_LDFLAGS="-l$USBLIB" + ;; ++ freebsd*) ++ USBLIB="hidapi" ++ ++$as_echo "#define WANT_HIDAPI 1" >>confdefs.h ++ ++ LIBCONCORD_LDFLAGS="-l$USBLIB" ++ ;; + darwin*) + USBLIB="hidapi" + Added: head/comms/libconcord/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/libconcord/pkg-descr Tue Jun 3 08:15:28 2014 (r356303) @@ -0,0 +1,6 @@ +The concordance software suite allows you to program your Logitech Harmony +remote using a configuration object retreived from the harmony website. The +Logitech Harmony is a highly configuration universal remote than can control +most multimedia devices. + +This port contains the C Libraries for the concordance framework. Added: head/comms/libconcord/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/libconcord/pkg-plist Tue Jun 3 08:15:28 2014 (r356303) @@ -0,0 +1,6 @@ +include/libconcord.h +lib/libconcord.a +lib/libconcord.so +lib/libconcord.so.3 +lib/libconcord.so.3.0.0 +share/mime/packages/libconcord.xml