diff options
author | novel <novel@FreeBSD.org> | 2015-11-25 06:21:16 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2015-11-25 06:21:16 +0800 |
commit | b410db41262a5e504e7c4ee311e7f9cef82dec9a (patch) | |
tree | 02c2a1da5c678dc3a33c5a94971dc67b34b44810 /x11-wm | |
parent | 4e5dce3f14a3fb6f64f68483af523c9e1fad9052 (diff) | |
download | freebsd-ports-graphics-b410db41262a5e504e7c4ee311e7f9cef82dec9a.tar.gz freebsd-ports-graphics-b410db41262a5e504e7c4ee311e7f9cef82dec9a.tar.zst freebsd-ports-graphics-b410db41262a5e504e7c4ee311e7f9cef82dec9a.zip |
x11-wm/openbox: fix dependencies and default package
At build time openbox tries to detect presence of some
X11 extentions libs and headers and silently disables
support for them if they cannot be found.
When building from port, these extensions are usually
available already, so user gets a fully functional package,
however, when installing from package user gets a package with
a limited functionality.
Fix this by adding all the required dependencies to USE_XORG.
PR: 204706
MFH: 2015Q4
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/openbox/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11-wm/openbox/Makefile b/x11-wm/openbox/Makefile index 454b4279e03..507f9389c4a 100644 --- a/x11-wm/openbox/Makefile +++ b/x11-wm/openbox/Makefile @@ -3,6 +3,7 @@ PORTNAME= openbox PORTVERSION= 3.6 +PORTREVISION= 1 CATEGORIES= x11-wm MASTER_SITES= http://openbox.org/dist/openbox/ @@ -14,7 +15,7 @@ LICENSE= GPLv2 GNU_CONFIGURE= yes USES= gmake libtool pathfix pkgconfig USE_GNOME= glib20 libxml2 -USE_XORG= xext xft +USE_XORG= xcursor xext xft xinerama xrandr xau USE_LDCONFIG= yes CFLAGS+= -I${LOCALBASE}/include |