diff options
author | novel <novel@FreeBSD.org> | 2012-03-25 22:36:10 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2012-03-25 22:36:10 +0800 |
commit | e5e31f21621fdf5eb8c2f63aaa911d8c1155a27c (patch) | |
tree | aff1dfc0972d5debb9c8326519c91063ef0e71e3 /x11-wm | |
parent | 9a708ab5258adcbbf9c92279aadeff69a964e1b7 (diff) | |
download | freebsd-ports-gnome-e5e31f21621fdf5eb8c2f63aaa911d8c1155a27c.tar.gz freebsd-ports-gnome-e5e31f21621fdf5eb8c2f63aaa911d8c1155a27c.tar.zst freebsd-ports-gnome-e5e31f21621fdf5eb8c2f63aaa911d8c1155a27c.zip |
- Add missing dependency on startup-notification and add a knob to
disable it
- Bump PORTREVISION
PR: ports/166217
Submitted by: Oleg Pudeyev <oleg@bsdpower.com>
Feature safe: yes
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/openbox/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11-wm/openbox/Makefile b/x11-wm/openbox/Makefile index ca50db5db9d3..dfc33ff74bd8 100644 --- a/x11-wm/openbox/Makefile +++ b/x11-wm/openbox/Makefile @@ -7,7 +7,7 @@ PORTNAME= openbox PORTVERSION= 3.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-wm MASTER_SITES= http://openbox.org/dist/openbox/ \ http://dougbarton.us/Downloads/ @@ -50,6 +50,12 @@ USE_GNOME+= pango CONFIGURE_ARGS+= --disable-pango .endif +.if !defined(WITHOUT_STARTUP_NOTIFICATION) +LIB_DEPENDS+= startup-notification-1.0:${PORTSDIR}/x11/startup-notification +.else +CONFIGURE_ARGS+= --disable-startup-notification +.endif + post-configure: @${CHMOD} +x ${WRKSRC}/install-sh |