blob: fe714b83c845ed3dfc7b2cf55f02ed9aa0308027 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# New ports collection makefile for: terminator
# Date created: 2008-03-14
# Whom: Thomas Hurst <tom@hur.st>
#
# $FreeBSD$
#
PORTNAME= terminator
PORTVERSION= 0.96
PORTREVISION= 2
CATEGORIES= x11 python
MASTER_SITES= http://launchpadlibrarian.net/80778747/ \
http://hur.st/mirror/terminator/
MAINTAINER= tom@hur.st
COMMENT= Multiple GNOME terminals in one window
LICENSE= GPLv2
OPTIONS= NLS "Native language support" on \
GCONF "Use GNOME Terminal settings" on
USE_PYTHON= 2.5+
USE_PYDISTUTILS= yes
PYDISTUTILS_PKGNAME= Terminator
INSTALLS_ICONS= yes
WANT_GNOME= yes
.include <bsd.port.pre.mk>
PYSETUP+= --without-icon-cache
.ifdef(WITHOUT_NLS)
PLIST_SUB+= NLS="@comment "
PYSETUP+= --without-gettext
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.endif
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/vtemodule.so:${PORTSDIR}/x11-toolkits/py-vte
.if defined(WITH_GCONF)
USE_GNOME+= pygnome2
.endif
USE_GNOME+= pygtk2
MAN1= terminator.1
MAN5= terminator_config.5
.include <bsd.port.post.mk>
|