From owner-svn-ports-head@freebsd.org Mon Feb 27 21:24:55 2017 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 D7870CEEA20; Mon, 27 Feb 2017 21:24:55 +0000 (UTC) (envelope-from swills@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 8AB0CC95; Mon, 27 Feb 2017 21:24:55 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1RLOskv079433; Mon, 27 Feb 2017 21:24:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1RLOsBX079428; Mon, 27 Feb 2017 21:24:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201702272124.v1RLOsBX079428@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 27 Feb 2017 21:24:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434993 - in head/x11: . pipeglade 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.23 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: Mon, 27 Feb 2017 21:24:56 -0000 Author: swills Date: Mon Feb 27 21:24:53 2017 New Revision: 434993 URL: https://svnweb.freebsd.org/changeset/ports/434993 Log: x11/pipeglade: create port Pipeglade is a helper program that displays graphical user interfaces for other programs. It renders the GUI definition found in a GtkBuilder file (created using the Glade Interface Designer), and communicates with the main program solely via pipes or fifos. WWW: http://pipeglade.boundp.org PR: 203523 Submitted by: Bert Burgemeister (with modifications) Added: head/x11/pipeglade/ head/x11/pipeglade/Makefile (contents, props changed) head/x11/pipeglade/distinfo (contents, props changed) head/x11/pipeglade/pkg-descr (contents, props changed) head/x11/pipeglade/pkg-plist (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Mon Feb 27 21:20:41 2017 (r434992) +++ head/x11/Makefile Mon Feb 27 21:24:53 2017 (r434993) @@ -249,6 +249,7 @@ SUBDIR += p5-X11-XCB SUBDIR += p5-X11-Xlib SUBDIR += p5-XTerm-Conf + SUBDIR += pipeglade SUBDIR += pixman SUBDIR += plasma-scriptengine-python SUBDIR += plasma-scriptengine-ruby Added: head/x11/pipeglade/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/pipeglade/Makefile Mon Feb 27 21:24:53 2017 (r434993) @@ -0,0 +1,35 @@ +# Created by: Bert Burgemeister +# $FreeBSD$ + +PORTNAME= pipeglade +PORTVERSION= 4.7.0 +CATEGORIES= x11 devel + +MAINTAINER= trebbu@googlemail.com +COMMENT= Graphical user interface driven by pipes or fifos + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= trebb + +USES= gettext-runtime pkgconfig +USE_GNOME= cairo gdkpixbuf2 glib20 gtk30 libxml2 + +OPTIONS_DEFINE= EXAMPLES +OPTIONS_SUB= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1/ + +post-install-EXAMPLES-on: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/clock.sh ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/echo.sh ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/clock.ui ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/pipeglade.ui ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/simple_dialog.ui ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/simple_open.ui ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/x11/pipeglade/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/pipeglade/distinfo Mon Feb 27 21:24:53 2017 (r434993) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488225220 +SHA256 (trebb-pipeglade-4.7.0_GH0.tar.gz) = 91020685849ccb1fd091d41fbace68b23be2bb4b9d6c543a6b1bb68ccb3ca828 +SIZE (trebb-pipeglade-4.7.0_GH0.tar.gz) = 82888 Added: head/x11/pipeglade/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/pipeglade/pkg-descr Mon Feb 27 21:24:53 2017 (r434993) @@ -0,0 +1,21 @@ +Pipeglade is a helper program that displays graphical user interfaces +for other programs. It renders the GUI definition found in a +GtkBuilder file (created using the Glade Interface Designer), and +communicates with the main program solely via pipes or fifos. + +To have its GUI rendered by pipeglade, a program must be able to + - send plain text commands to standard output or a named pipe and/or + - receive and parse simple plain text messages from standard input or + a named pipe. + +Simple one-shot dialogs as well as more complex, long-running programs +can be built. + +Pipeglade provides access to a subset of the features available in +GTK+ 3. Widgets able to communicate via pipeglade include text labels +and images, statusbars and progress indicators, various kinds of +buttons, spinbuttons and scales/sliders, comboboxes and menus, various +text and tabular inputs, various standard dialog windows, calendars, +drawing areas. + +WWW: http://pipeglade.boundp.org Added: head/x11/pipeglade/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/pipeglade/pkg-plist Mon Feb 27 21:24:53 2017 (r434993) @@ -0,0 +1,8 @@ +bin/pipeglade +man/man1/pipeglade.1.gz +%%EXAMPLES%%%%EXAMPLESDIR%%/clock.sh +%%EXAMPLES%%%%EXAMPLESDIR%%/clock.ui +%%EXAMPLES%%%%EXAMPLESDIR%%/echo.sh +%%EXAMPLES%%%%EXAMPLESDIR%%/pipeglade.ui +%%EXAMPLES%%%%EXAMPLESDIR%%/simple_dialog.ui +%%EXAMPLES%%%%EXAMPLESDIR%%/simple_open.ui