1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

add HAL and NOTIFY to the OPTIONS and enable them by default

bump PORTREVISION
This commit is contained in:
Oliver Lehmann 2007-01-29 16:55:42 +00:00
parent 67483b23fb
commit 41465cff75
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=183633

View File

@ -7,6 +7,7 @@
PORTNAME= libexo
PORTVERSION= 0.3.2
PORTREVISION= 1
CATEGORIES= x11 xfce
DISTNAME= exo-${PORTVERSION}
MASTER_SITES= ${MASTER_SITES_XFCE}
@ -33,7 +34,9 @@ USE_LDCONFIG= yes
USE_XFCE= configenv libutil mcsmanager
USE_XLIB= yes
OPTIONS= PYTHON "Enable Python support" off \
OPTIONS= HAL "Enable HAL support" on \
NOTIFY "Enable notification support" on \
PYTHON "Enable Python support" off \
GTKDOC "Build with documentation" off \
MCS "Build with xfce4-mcs-manager support" on
@ -51,6 +54,20 @@ CONFIGURE_ARGS+=--disable-gtk-doc
PLIST_SUB+= GTK_DOC="@comment "
.endif
.if defined(WITH_HAL)
CONFIGURE_ARGS+=--enable-hal
LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal
.else
CONFIGURE_ARGS+=--disable-hal
.endif
.if defined(WITH_NOTIFY)
CONFIGURE_ARGS+=--enable-notifications
LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify
.else
CONFIGURE_ARGS+=--disable-notifications
.endif
.if defined(WITH_PYTHON)
CONFIGURE_ARGS+=--enable-python
USE_PYTHON= yes