8026518389
- Convert to new LIB_DEPENDS format - Switch to USES=gmake (deskutils/xfce4-tumbler) Approved by: ehaupt@ (maintainer of deskutils/xfce4-notifyd)
44 lines
990 B
Makefile
44 lines
990 B
Makefile
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xfce4-notifyd
|
|
PORTVERSION= 0.2.4
|
|
CATEGORIES= deskutils xfce
|
|
MASTER_SITES= XFCE
|
|
MASTER_SITE_SUBDIR= src/apps/${PORTNAME}/${PORTVERSION:R}
|
|
DIST_SUBDIR= xfce4
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Visually-appealing notification daemon for Xfce
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
|
|
libnotify.so:${PORTSDIR}/devel/libnotify
|
|
|
|
USES= pkgconfig gmake
|
|
USE_AUTOTOOLS= libtool
|
|
GNU_CONFIGURE= yes
|
|
USE_BZIP2= yes
|
|
USE_GNOME= gtk20 intltool intlhack
|
|
USE_XFCE= configenv libmenu libutil xfconf
|
|
INSTALLS_ICONS= yes
|
|
USE_XORG= x11
|
|
|
|
CONFLICTS= notification-daemon-[0-9]* xfce4-notification-daemon-[0-9]*
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
CONFIGURE_ARGS+=--enable-nls
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
EXTRA_PATCHES= ${FILESDIR}/extra-patch-configure
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|