blob: 2f80d564b818a6a384f006d08a47fd0b0b0a2a43 (
plain)
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
52
53
|
# New ports collection makefile for: Terminal
# Date created: 23 October 2004
# Whom: Matt Lancereau <ports@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= Terminal
PORTVERSION= 0.4.3
CATEGORIES= x11 xfce
MASTER_SITES= http://www.xfce.org/archive/src/apps/terminal/0.4/
DIST_SUBDIR= xfce4
MAINTAINER= oliver@FreeBSD.org
COMMENT= Terminal emulator for the X windowing system
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
USE_BZIP2= yes
USE_GETTEXT= yes
USE_GMAKE= yes
USE_GNOME= gnometarget gtk20 intltool intlhack pkgconfig vte
USE_XFCE= configenv libexo
OPTIONS= DBUS "Enable D-BUS support" on \
STARTUP "Enable startup notification support" on
MAN1= Terminal.1
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_DBUS)
LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib
CONFIGURE_ARGS+=--enable-dbus
PLIST_SUB+= WITH_DBUS=""
.else
CONFIGURE_ARGS+=--disable-dbus
PLIST_SUB+= WITH_DBUS="@comment "
.endif
.if !defined(WITHOUT_STARTUP)
LIB_DEPENDS+= startup-notification-1.0:${PORTSDIR}/x11/startup-notification
CONFIGURE_ARGS+=--enable-startup-notification
.else
CONFIGURE_ARGS+=--disable-startup-notification
.endif
post-patch:
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -e 's| doc[ ]*||' ${WRKSRC}/Makefile.in
.endif
.include <bsd.port.post.mk>
|