a5f9cc91c2
x11-fonts/, x11-toolkits and x11-wm to new USES=python Approved by: portmgr (implicit)
52 lines
1 KiB
Makefile
52 lines
1 KiB
Makefile
# Created by: Thomas Hurst <tom@hur.st>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= terminator
|
|
PORTVERSION= 0.97
|
|
CATEGORIES= x11 python
|
|
MASTER_SITES= http://launchpad.net/terminator/trunk/0.97/+download/
|
|
|
|
MAINTAINER= tom@hur.st
|
|
COMMENT= Multiple GNOME terminals in one window
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}notify>=0:${PORTSDIR}/devel/py-notify \
|
|
${PYTHON_SITELIBDIR}/keybinder/_keybinder.so:${PORTSDIR}/x11/keybinder \
|
|
${PYTHON_PKGNAMEPREFIX}vte>=0:${PORTSDIR}/x11-toolkits/py-vte
|
|
|
|
OPTIONS_DEFINE= NLS GCONF
|
|
GCONF_DESC= Use GNOME Terminal settings
|
|
OPTIONS_DEFAULT= NLS GCONF
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils
|
|
PYDISTUTILS_PKGNAME= Terminator
|
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
WANT_GNOME= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
PLIST_SUB+= NLS="@comment "
|
|
PYSETUP+= --without-gettext
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
PYDISTUTILS_SETUP+= --without-icon-cache
|
|
|
|
.if ${PORT_OPTIONS:MGCONF}
|
|
USE_GNOME+= pygnome2
|
|
.endif
|
|
USE_GNOME+= pygtk2
|
|
|
|
MAN1= terminator.1
|
|
MAN5= terminator_config.5
|
|
|
|
.include <bsd.port.post.mk>
|