1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00
freebsd-ports/x11/pipeglade/Makefile
Steve Wills 562fb15fe1 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)
2017-02-27 21:24:53 +00:00

36 lines
1.0 KiB
Makefile

# 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>