1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00
freebsd-ports/x11/yad/Makefile
Jason Helfman 1147379fe0 - update to 0.18.0
PR:		174136
Submitted by:	maintainer, danilogondolfo@gmail.com
Feature safe:	yes
2012-12-05 04:32:36 +00:00

55 lines
910 B
Makefile

# $FreeBSD$
PORTNAME= yad
PORTVERSION= 0.18.0
CATEGORIES= x11 gnome
MASTER_SITES= GOOGLE_CODE
MAINTAINER= danilogondolfo@gmail.com
COMMENT= Display GNOME dialogs from the command line
USE_GMAKE= yes
USE_XZ= yes
GNU_CONFIGURE= yes
INSTALLS_OMF= yes
INSTALLS_ICONS= yes
CONFIGURE_ENV+= DATADIRNAME=share
MAKE_JOBS_SAFE= yes
MAN1= yad.1
OPTIONS_DEFINE= NLS
OPTIONS_SINGLE= GTK
OPTIONS_SINGLE_GTK= GTK2 GTK3
OPTIONS_DEFAULT= GTK2
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
PLIST_SUB+= NLS=""
USE_GETTEXT= yes
.else
PLIST_SUB+= NLS="@comment "
CONFIGURE_ARGS+= --disable-nls
.endif
.if ${PORT_OPTIONS:MGTK3}
USE_GNOME= gtk30
CONFIGURE_ARGS+= --with-gtk=gtk3
.endif
.if ${PORT_OPTIONS:MGTK2}
USE_GNOME= gtk20
CONFIGURE_ARGS+= --with-gtk=gtk2
.endif
post-configure:
.if empty(PORT_OPTIONS:MNLS)
@${REINPLACE_CMD} -e '/^SUBDIRS =/ s/ po//' ${WRKSRC}/Makefile
.endif
.include <bsd.port.mk>