From owner-svn-ports-all@FreeBSD.ORG Thu Apr 24 14:29:19 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 5409EF0D; Thu, 24 Apr 2014 14:29:19 +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 34ABB1059; Thu, 24 Apr 2014 14:29:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3OETJx9069865; Thu, 24 Apr 2014 14:29:19 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3OETIrQ069861; Thu, 24 Apr 2014 14:29:18 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201404241429.s3OETIrQ069861@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 24 Apr 2014 14:29:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352007 - in head/devel: . dbus-tcl 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.17 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: Thu, 24 Apr 2014 14:29:19 -0000 Author: gahr Date: Thu Apr 24 14:29:18 2014 New Revision: 352007 URL: http://svnweb.freebsd.org/changeset/ports/352007 QAT: https://qat.redports.org/buildarchive/r352007/ Log: - New port: devel/dbus-tcl The DBus-Tcl project provides a Tcl interface to the dbus message bus system. It contains packages that allow Tcl programs to send and receive dbus signals, as well as invoke and respond to dbus method calls. WWW: http://dbus-tcl.sf.net Added: head/devel/dbus-tcl/ head/devel/dbus-tcl/Makefile (contents, props changed) head/devel/dbus-tcl/distinfo (contents, props changed) head/devel/dbus-tcl/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Apr 24 14:18:46 2014 (r352006) +++ head/devel/Makefile Thu Apr 24 14:29:18 2014 (r352007) @@ -331,6 +331,7 @@ SUBDIR += dbus-glib SUBDIR += dbus-qt4 SUBDIR += dbus-qt5 + SUBDIR += dbus-tcl SUBDIR += dbus-sharp SUBDIR += dbus-sharp-glib SUBDIR += dcmtk Added: head/devel/dbus-tcl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dbus-tcl/Makefile Thu Apr 24 14:29:18 2014 (r352007) @@ -0,0 +1,40 @@ +# Created by: gahr +# $FreeBSD$ + +PORTNAME= dbus-tcl +PORTVERSION= 2.0 +CATEGORIES= devel +MASTER_SITES= SF/${PORTNAME}/dbus/${PORTVERSION}/ +DISTNAME= dbus-${PORTVERSION} + +MAINTAINER= tcltk@FreeBSD.org +COMMENT= Tcl interface to the D-Bus messaging system + +LICENSE= ISCL + +LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus + +OPTIONS_DEFINE= DOCS +DOCSDIR= ${PREFIX}/share/doc/dbus +PORTDOCS= * + +USES= pkgconfig tcl:85+ +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} \ + --exec-prefix=${PREFIX} + +PLIST_FILES= lib/dbus/libdbus20.so.1 \ + lib/dbus/pkgIndex.tcl \ + man/mann/dbus.n.gz +PLIST_DIRS= lib/dbus + +.include + +.if ${PORT_OPTIONS:MDOCS} +BUILD_DEPENDS= dtplite:${PORTSDIR}/devel/tcllib +.endif + +regression-test: + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} test + +.include Added: head/devel/dbus-tcl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dbus-tcl/distinfo Thu Apr 24 14:29:18 2014 (r352007) @@ -0,0 +1,2 @@ +SHA256 (dbus-2.0.tar.gz) = 428b4045d395b0d26255730ce7c0d14850e45abb3c7cc6d9d48c1d2b723bb16a +SIZE (dbus-2.0.tar.gz) = 170733 Added: head/devel/dbus-tcl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dbus-tcl/pkg-descr Thu Apr 24 14:29:18 2014 (r352007) @@ -0,0 +1,5 @@ +The DBus-Tcl project provides a Tcl interface to the dbus message bus system. +It contains packages that allow Tcl programs to send and receive dbus signals, +as well as invoke and respond to dbus method calls. + +WWW: http://dbus-tcl.sf.net