mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
9766105124
The ttb program requires the py-gtk bindings in order to run, but the corresponding runtime dependency is missing in the Makefile. Correct this by adding a runtime dependency. This PR suggests adding the py-gtk2 toolkit as runtime dependency, which works correctly. I haven't tested the py-gtk (GTK 1.X) toolkit as dependency. PR: ports/95527 Submitted by: Rene Ladan <r.c.ladan@gmail.com> <r.c.ladan@gmail.com>
31 lines
726 B
Makefile
31 lines
726 B
Makefile
#
|
|
# New ports collection makefile for: nos-ttb
|
|
# Date created: 6 May 2005
|
|
# Whom: Edwin Groothuis
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nos-ttb
|
|
PORTVERSION= 0.9.4
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.djcbsoftware.nl/code/ttb/
|
|
DISTNAME= ttb-${PORTVERSION}
|
|
|
|
MAINTAINER= edwin@mavetju.org
|
|
COMMENT= NOS teletekst browser
|
|
|
|
#don't know if pygtk-1.X could also be used
|
|
RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pygtk-2.0.pc:${PORTSDIR}/x11-toolkits/py-gtk2
|
|
|
|
NO_BUILD= yes
|
|
USE_PYTHON= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/share/ttb
|
|
${INSTALL_SCRIPT} ${WRKSRC}/src/ttb ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/glade/ttb.glade ${PREFIX}/share/ttb
|
|
${INSTALL_DATA} ${WRKSRC}/images/ttb.png ${PREFIX}/share/ttb
|
|
|
|
.include <bsd.port.mk>
|