summaryrefslogtreecommitdiff
path: root/x11/yad/Makefile
blob: f229d8e04d9cdaebf0ccc349b7822d7cf6879121 (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
# Created by: Danilo Egea Gondolfo <danilogondolfo@gmail.com>
# $FreeBSD$

PORTNAME=	yad
PORTVERSION=	0.23.0
CATEGORIES=	x11 gnome
MASTER_SITES=	GOOGLE_CODE

MAINTAINER=	danilogondolfo@gmail.com
COMMENT=	Display GNOME dialogs from the command line

USES=		gmake pkgconfig
USE_XZ=		yes
GNU_CONFIGURE=	yes
INSTALLS_OMF=	yes
INSTALLS_ICONS=	yes
CONFIGURE_ENV+=	DATADIRNAME=share

MAN1=	yad.1

OPTIONS_DEFINE=	NLS ICONBROWSER
ICONBROWSER_DESC=	Build YAD icon browser
OPTIONS_SUB=	yes

OPTIONS_SINGLE=	GTK
OPTIONS_SINGLE_GTK=	GTK2 GTK3

OPTIONS_DEFAULT=	GTK2

NLS_CONFIGURE_OFF=	--disable-nls
NLS_USES=	gettext
GTK2_CONFIGURE_ON=	--with-gtk=gtk2
GTK3_CONFIGURE_ON=	--with-gtk=gtk3
ICONBROWSER_CONFIGURE_ENABLE=	icon-browser

NO_STAGE=	yes
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MGTK2}
USE_GNOME=	gtk20
.else
USE_GNOME=	gtk30
.endif

post-configure:
.if empty(PORT_OPTIONS:MNLS)
	@${REINPLACE_CMD} -e '/^SUBDIRS =/ s/ po//' ${WRKSRC}/Makefile
.endif

.include <bsd.port.mk>