diff options
author | oliver <oliver@FreeBSD.org> | 2011-03-08 20:06:24 +0800 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2011-03-08 20:06:24 +0800 |
commit | 55225b43222c9329fe41a0545a0aeca11abbfc74 (patch) | |
tree | 5cb75366cd7d98e0c84deea86aa2fb89225ba07d /x11-wm | |
parent | 75d6c189f800e15f17b7e2e1aae878b4bf6bd51b (diff) | |
download | freebsd-ports-gnome-55225b43222c9329fe41a0545a0aeca11abbfc74.tar.gz freebsd-ports-gnome-55225b43222c9329fe41a0545a0aeca11abbfc74.tar.zst freebsd-ports-gnome-55225b43222c9329fe41a0545a0aeca11abbfc74.zip |
fix 100% CPU usage under some circumstances
bump PORTREVISION
Submitted by: Zhihao Yuan <lichray@gmail.com>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/xfce4-desktop/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/x11-wm/xfce4-desktop/Makefile b/x11-wm/xfce4-desktop/Makefile index 9aa2a5f3f117..7d2e688472ec 100644 --- a/x11-wm/xfce4-desktop/Makefile +++ b/x11-wm/xfce4-desktop/Makefile @@ -7,7 +7,7 @@ PORTNAME= xfce4-desktop PORTVERSION= 4.8.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-wm xfce MASTER_SITES= ${MASTER_SITE_XFCE} MASTER_SITE_SUBDIR= src/xfce/xfdesktop/${PORTVERSION:R} @@ -29,18 +29,17 @@ USE_LDCONFIG= yes USE_XFCE= configenv garcon libgui libmenu libutil panel xfconf \ libexo -OPTIONS= FAM "Enable FAM support" on \ - THUNAR "Enable thunar support" on +OPTIONS= THUNAR "Enable thunar support" on MAN1= xfdesktop.1 .include <bsd.port.pre.mk> .if !defined(WITHOUT_THUNAR) -CONFIGURE_ARGS+=--enable-thunar-vfs --enable-thunarx +CONFIGURE_ARGS+=--enable-thunarx USE_XFCE+= thunar .else -CONFIGURE_ARGS+=--disable-thunar-vfs --disable-thunarx +CONFIGURE_ARGS+=--disable-thunarx .endif .include <bsd.port.post.mk> |