37 lines
780 B
Makefile
37 lines
780 B
Makefile
# Created by: Franz Klammer <klammer@webonaut.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mate-dialogs
|
|
PORTVERSION= 1.8.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11 mate
|
|
MASTER_SITES= MATE
|
|
DIST_SUBDIR= mate
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Display MATE dialogs from the command line
|
|
|
|
BUILD_DEPENDS= itstool:${PORTSDIR}/textproc/itstool
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
USES= gettext gmake pkgconfig tar:xz
|
|
USE_GNOME= gtk20
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-gtk=2.0
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= NOTIFY
|
|
OPTIONS_DEFAULT=NOTIFY
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNOTIFY}
|
|
LIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify
|
|
CONFIGURE_ARGS+=--enable-libnotify
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-libnotify
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|