blob: 1b44d878eefbc845da2de82b1c71f81611feebfe (
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
|
PORTNAME= gxmessage
PORTVERSION= 3.4.3
PORTREVISION= 1
CATEGORIES= deskutils
MASTER_SITES= GNU \
LOCAL/martymac
MAINTAINER= avg@FreeBSD.org
COMMENT= GTK3 substitute for xmessage
WWW= http://homepages.ihug.co.nz/~trmusson/programs.html #gxmessage
USE_GNOME= gtk30 gnomeprefix intltool
USES= gmake gnome pkgconfig
GNU_CONFIGURE= yes
MAKE_ARGS+= INSTALL="${INSTALL_PROGRAM}"
OPTIONS_DEFINE= NLS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
CONFIGURE_ARGS+= --enable-nls
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
INFO= ${PORTNAME}
.include <bsd.port.mk>
|