From owner-svn-ports-all@FreeBSD.ORG Tue Jun 3 08:17:40 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A0457FD; Tue, 3 Jun 2014 08:17:40 +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 85DD42B75; Tue, 3 Jun 2014 08:17:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s538HeDO031674; Tue, 3 Jun 2014 08:17:40 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s538Hddd031668; Tue, 3 Jun 2014 08:17:39 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201406030817.s538Hddd031668@svn.freebsd.org> From: Martin Wilke Date: Tue, 3 Jun 2014 08:17:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356304 - in head/comms: . concordance concordance/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:17:40 -0000 Author: miwi Date: Tue Jun 3 08:17:39 2014 New Revision: 356304 URL: http://svnweb.freebsd.org/changeset/ports/356304 QAT: https://qat.redports.org/buildarchive/r356304/ 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. PR: ports/190546 Submitted by: Stephen Hurd Added: head/comms/concordance/ head/comms/concordance/Makefile (contents, props changed) head/comms/concordance/distinfo (contents, props changed) head/comms/concordance/files/ head/comms/concordance/files/patch-configure (contents, props changed) head/comms/concordance/pkg-descr (contents, props changed) Modified: head/comms/Makefile Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Tue Jun 3 08:15:28 2014 (r356303) +++ head/comms/Makefile Tue Jun 3 08:17:39 2014 (r356304) @@ -21,6 +21,7 @@ SUBDIR += chirp SUBDIR += chu SUBDIR += comserv + SUBDIR += concordance SUBDIR += conserver SUBDIR += conserver-com SUBDIR += cutecom Added: head/comms/concordance/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/concordance/Makefile Tue Jun 3 08:17:39 2014 (r356304) @@ -0,0 +1,25 @@ +# Created by: Stephen Hurd +# $FreeBSD$ + +PORTNAME= concordance +PORTVERSION= 1.1 +CATEGORIES= comms +MASTER_SITES= SF + +MAINTAINER= shurd@sasktel.net +COMMENT= Command-line Logitech Harmony configuration tool + +LICENSE= GPLv2 + +LIB_DEPENDS= libconcord.so:${PORTSDIR}/comms/libconcord + +USES= tar:bzip2 +WRKSRC_SUBDIR= ${PORTNAME} +GNU_CONFIGURE= yes +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES= bin/concordance \ + man/man1/concordance.1.gz + +.include Added: head/comms/concordance/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/concordance/distinfo Tue Jun 3 08:17:39 2014 (r356304) @@ -0,0 +1,2 @@ +SHA256 (concordance-1.1.tar.bz2) = ca5ffbd8c0fd06d41192c1d5e3c8b964c2393ea6d3d9c5e495c1da4b2c778a05 +SIZE (concordance-1.1.tar.bz2) = 1142393 Added: head/comms/concordance/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/concordance/files/patch-configure Tue Jun 3 08:17:39 2014 (r356304) @@ -0,0 +1,12 @@ +--- configure.orig 2014-03-28 20:27:47.000000000 -0700 ++++ configure 2014-05-31 02:59:26.000000000 -0700 +@@ -15080,6 +15080,9 @@ + + LIBCONCORD_VERSION="3" + case $host_os in ++ freebsd*) ++ LIBCONCORD_LDFLAGS="-lconcord" ++ ;; + darwin*) + LIBCONCORD_LDFLAGS="-lconcord.$LIBCONCORD_VERSION" + ;; Added: head/comms/concordance/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/concordance/pkg-descr Tue Jun 3 08:17:39 2014 (r356304) @@ -0,0 +1,4 @@ +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.