Date: Mon, 27 Feb 2017 21:24:54 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434993 - in head/x11: . pipeglade Message-ID: <201702272124.v1RLOsBX079428@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <trebbu@googlemail.com> (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 <trebbu@googlemail.com> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702272124.v1RLOsBX079428>