From owner-svn-ports-all@FreeBSD.ORG Mon Feb 9 16:22:02 2015 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 09145418; Mon, 9 Feb 2015 16:22:02 +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 DE31C904; Mon, 9 Feb 2015 16:22:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t19GM1ac027134; Mon, 9 Feb 2015 16:22:01 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t19GM0cj027120; Mon, 9 Feb 2015 16:22:00 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201502091622.t19GM0cj027120@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Mon, 9 Feb 2015 16:22:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378739 - in head/deskutils: py-spice-gtk spice-gtk 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-1 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: Mon, 09 Feb 2015 16:22:02 -0000 Author: jgh Date: Mon Feb 9 16:21:59 2015 New Revision: 378739 URL: https://svnweb.freebsd.org/changeset/ports/378739 QAT: https://qat.redports.org/buildarchive/r378739/ Log: Add new ports: spice-gtk and py-spice-gtk spice-gtk is a GTK+2 and GTK+3 SPICE widget. It features glib-based objects for SPICE protocol parsing and a gtk widget for embedding the SPICE display into other applications such as virt-manager. Python bindings are available too. WWW: http://www.spice-space.org/ PR: 196949 (based on) Submitted by: olevole@olevole.ru Added: head/deskutils/py-spice-gtk/ head/deskutils/py-spice-gtk/Makefile (contents, props changed) head/deskutils/spice-gtk/ head/deskutils/spice-gtk/Makefile (contents, props changed) head/deskutils/spice-gtk/distinfo (contents, props changed) head/deskutils/spice-gtk/pkg-descr (contents, props changed) head/deskutils/spice-gtk/pkg-plist (contents, props changed) Added: head/deskutils/py-spice-gtk/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/py-spice-gtk/Makefile Mon Feb 9 16:21:59 2015 (r378739) @@ -0,0 +1,10 @@ +# Created by: olevole@olevole.ru +# $FreeBSD$ + +COMMENT= Python bindings for SPICE remote desktop servers +MASTERDIR= ${.CURDIR}/../spice-gtk + +CONFLICTS= spice-gtk-[0-9]* +SPICE_SLAVE= yes + +.include "${MASTERDIR}/Makefile" Added: head/deskutils/spice-gtk/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/spice-gtk/Makefile Mon Feb 9 16:21:59 2015 (r378739) @@ -0,0 +1,64 @@ +# Created by: olevole@olevole.ru +# $FreeBSD$ + +PORTNAME= spice-gtk +PORTVERSION= 0.26 +CATEGORIES?= deskutils gnome +MASTER_SITES= http://www.spice-space.org/download/gtk/ + +MAINTAINER= olevole@olevole.ru +COMMENT?= Gtk client and libraries for SPICE remote desktop servers + +LICENSE= GPLv2 + +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg + +USE_XORG= pixman +USE_GNOME= gnomeprefix gtk20 gtk30 intltool introspection:build +USES= gmake libtool pkgconfig tar:bzip2 pathfix + +.if defined(SPICE_SLAVE) +CATEGORIES+= python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gtk2>=0:${PORTSDIR}/x11-toolkits/py-gtk2 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gtk2>=0:${PORTSDIR}/x11-toolkits/py-gtk2 +CONFIGURE_ARGS+= --with-python +PLIST_FILES+= %%PYTHON_SITELIBDIR%%/SpiceClientGtk.a \ + %%PYTHON_SITELIBDIR%%/SpiceClientGtk.so +USES+= python +.endif + +CONFIGURE_ENV+= SSL_CFLAGS=-I${OPENSSLINC} \ + SSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +USE_OPENSSL= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +INSTALL_TARGET= install-strip + +OPTIONS_DEFINE= NLS DOCS SASL +OPTIONS_DEFAULT= GSTREAMER SASL +OPTIONS_SUB= yes + +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls + +OPTIONS_SINGLE= AUDIO +OPTIONS_SINGLE_AUDIO= GSTREAMER PULSEAUDIO NOAUDIO + +NOAUDIO_DESC= Disable audio backend + +GSTREAMER_CONFIGURE_ON= --with-audio=gstreamer +GSTREAMER_USE= gstreamer=yes +PULSEAUDIO_CONFIGURE_ON= --with-audio=pulse +PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio +PULSEAUDIO_CONFIGURE_ENABLE= pulse +NOAUDIO_CONFIGURE_ON= --with-audio=no +SASL_CONFIGURE_WITH= sasl=yes +SASL_LIB_DEPENDS= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 + +.include Added: head/deskutils/spice-gtk/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/spice-gtk/distinfo Mon Feb 9 16:21:59 2015 (r378739) @@ -0,0 +1,2 @@ +SHA256 (spice-gtk-0.26.tar.bz2) = d61cabeb4ae03afb5bb921139491d1088ca0cdf77c7e70b8039fe62c2246e3f9 +SIZE (spice-gtk-0.26.tar.bz2) = 1278731 Added: head/deskutils/spice-gtk/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/spice-gtk/pkg-descr Mon Feb 9 16:21:59 2015 (r378739) @@ -0,0 +1,6 @@ +spice-gtk is a GTK+2 and GTK+3 SPICE widget. It features glib-based objects +for SPICE protocol parsing and a gtk widget for embedding the SPICE display +into other applications such as virt-manager. +Python bindings are available too. + +WWW: http://www.spice-space.org/ Added: head/deskutils/spice-gtk/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/spice-gtk/pkg-plist Mon Feb 9 16:21:59 2015 (r378739) @@ -0,0 +1,94 @@ +share/vala/vapi/spice-protocol.vapi +%%NLS%%share/locale/fr/LC_MESSAGES/spice-gtk.mo +share/gir-1.0/SpiceClientGtk-3.0.gir +share/gir-1.0/SpiceClientGLib-2.0.gir +share/doc/spice-gtk/up.png +share/doc/spice-gtk/up-insensitive.png +share/doc/spice-gtk/style.css +share/doc/spice-gtk/spice-gtk.devhelp2 +share/doc/spice-gtk/spice-gtk-Utilities.html +share/doc/spice-gtk/spice-gtk-SpiceURI.html +share/doc/spice-gtk/right.png +share/doc/spice-gtk/right-insensitive.png +share/doc/spice-gtk/object-tree.html +share/doc/spice-gtk/left.png +share/doc/spice-gtk/left-insensitive.png +share/doc/spice-gtk/index.sgml +share/doc/spice-gtk/index.html +share/doc/spice-gtk/home.png +share/doc/spice-gtk/ch03.html +share/doc/spice-gtk/ch02.html +share/doc/spice-gtk/ch01.html +share/doc/spice-gtk/application-support.html +share/doc/spice-gtk/api-reference.html +share/doc/spice-gtk/api-index-full.html +share/doc/spice-gtk/api-index-deprecated.html +share/doc/spice-gtk/annotation-glossary.html +share/doc/spice-gtk/SpiceWebdavChannel.html +share/doc/spice-gtk/SpiceUsbredirChannel.html +share/doc/spice-gtk/SpiceUsbDeviceWidget.html +share/doc/spice-gtk/SpiceUsbDeviceManager.html +share/doc/spice-gtk/SpiceSmartcardManager.html +share/doc/spice-gtk/SpiceSmartcardChannel.html +share/doc/spice-gtk/SpiceSession.html +share/doc/spice-gtk/SpiceRecordChannel.html +share/doc/spice-gtk/SpicePortChannel.html +share/doc/spice-gtk/SpicePlaybackChannel.html +share/doc/spice-gtk/SpiceMainChannel.html +share/doc/spice-gtk/SpiceInputsChannel.html +share/doc/spice-gtk/SpiceGtkSession.html +share/doc/spice-gtk/SpiceDisplayChannel.html +share/doc/spice-gtk/SpiceDisplay.html +share/doc/spice-gtk/SpiceCursorChannel.html +share/doc/spice-gtk/SpiceChannel.html +share/doc/spice-gtk/SpiceAudio.html +man/man1/spice-client.1.gz +libdata/pkgconfig/spice-controller.pc +libdata/pkgconfig/spice-client-gtk-3.0.pc +libdata/pkgconfig/spice-client-glib-2.0.pc +lib/libspice-controller.so.0.0.0 +lib/libspice-controller.so.0 +lib/libspice-controller.so +lib/libspice-controller.a +lib/libspice-client-gtk-3.0.so.4.0.0 +lib/libspice-client-gtk-3.0.so.4 +lib/libspice-client-gtk-3.0.so +lib/libspice-client-gtk-3.0.a +lib/libspice-client-glib-2.0.so.8.5.0 +lib/libspice-client-glib-2.0.so.8 +lib/libspice-client-glib-2.0.so +lib/libspice-client-glib-2.0.a +lib/girepository-1.0/SpiceClientGtk-3.0.typelib +lib/girepository-1.0/SpiceClientGLib-2.0.typelib +include/spice-controller/spice-controller.h +include/spice-client-gtk-3.0/usb-device-widget.h +include/spice-client-gtk-3.0/spice-widget.h +include/spice-client-gtk-3.0/spice-widget-enums.h +include/spice-client-gtk-3.0/spice-gtk-session.h +include/spice-client-gtk-3.0/spice-grabsequence.h +include/spice-client-glib-2.0/usb-device-manager.h +include/spice-client-glib-2.0/spice-version.h +include/spice-client-glib-2.0/spice-util.h +include/spice-client-glib-2.0/spice-uri.h +include/spice-client-glib-2.0/spice-types.h +include/spice-client-glib-2.0/spice-session.h +include/spice-client-glib-2.0/spice-option.h +include/spice-client-glib-2.0/spice-glib-enums.h +include/spice-client-glib-2.0/spice-client.h +include/spice-client-glib-2.0/spice-channel.h +include/spice-client-glib-2.0/spice-channel-enums.h +include/spice-client-glib-2.0/spice-audio.h +include/spice-client-glib-2.0/smartcard-manager.h +include/spice-client-glib-2.0/channel-webdav.h +include/spice-client-glib-2.0/channel-usbredir.h +include/spice-client-glib-2.0/channel-smartcard.h +include/spice-client-glib-2.0/channel-record.h +include/spice-client-glib-2.0/channel-port.h +include/spice-client-glib-2.0/channel-playback.h +include/spice-client-glib-2.0/channel-main.h +include/spice-client-glib-2.0/channel-inputs.h +include/spice-client-glib-2.0/channel-display.h +include/spice-client-glib-2.0/channel-cursor.h +bin/spicy-stats +bin/spicy-screenshot +bin/spicy