- Add WITHOUT_LIBNOTIFY knob which allows to disable libnotify support
- In case when libnotify support is enabled, add RUN_DEPEND on deskutils/notification-daemon [1] - Bump PORTREVISION Reported by: [LoN]Kamikaze [1]
This commit is contained in:
parent
8e16deea6e
commit
6d1f03407f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=168066
1 changed files with 9 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= bmpx
|
||||
PORTVERSION= 0.20.2
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= multimedia
|
||||
MASTER_SITES= http://files.beep-media-player.org/releases/${PORTVERSION:C/\.[0-9]*$//}/
|
||||
|
||||
|
@ -19,7 +20,6 @@ LIB_DEPENDS= tag.5:${PORTSDIR}/audio/taglib \
|
|||
neon.25:${PORTSDIR}/www/neon \
|
||||
glademm-2.4.1:${PORTSDIR}/devel/libglademm24 \
|
||||
gtkmm-2.4:${PORTSDIR}/x11-toolkits/gtkmm24 \
|
||||
notify.2:${PORTSDIR}/devel/libnotify \
|
||||
boost_date_time.3:${PORTSDIR}/devel/boost \
|
||||
dbus-1.2:${PORTSDIR}/devel/dbus
|
||||
|
||||
|
@ -57,6 +57,14 @@ USE_GETTEXT= yes
|
|||
PLIST_SUB+= NLS=""
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_LIBNOTIFY)
|
||||
CONFIGURE_ARGS+= --enable-libnotify
|
||||
LIB_DEPENDS+= notify.2:${PORTSDIR}/devel/libnotify
|
||||
RUN_DEPENDS+= ${X11BASE}/libexec/notification-daemon:${PORTSDIR}/deskutils/notification-daemon
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-libnotify
|
||||
.endif
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
post-extract:
|
||||
|
|
Loading…
Reference in a new issue