aboutsummaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorSean Bruno <sbruno@FreeBSD.org>2016-11-21 15:00:40 +0000
committerSean Bruno <sbruno@FreeBSD.org>2016-11-21 15:00:40 +0000
commit217b0b61a7c9ba83a74f201941b2dbf5c38d8cf5 (patch)
treef791a473cb8c118125ae6a0484438c5a0d78ad79 /emulators
parent4f13a57d72b3b25e5e3945aae7c7b92b6919f549 (diff)
downloadports-217b0b61a7c9ba83a74f201941b2dbf5c38d8cf5.tar.gz
ports-217b0b61a7c9ba83a74f201941b2dbf5c38d8cf5.zip
QEMU requires pixman to build qemu-system-* targets regardless of
whether we are building for X or not. Add the dependency if PR: 214668 Submitted by: mail+freebsd@gerritbeine.de
Notes
Notes: svn path=/head/; revision=426725
Diffstat (limited to 'emulators')
-rw-r--r--emulators/qemu-sbruno/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/emulators/qemu-sbruno/Makefile b/emulators/qemu-sbruno/Makefile
index 78d669f83bed..366c747e6a0b 100644
--- a/emulators/qemu-sbruno/Makefile
+++ b/emulators/qemu-sbruno/Makefile
@@ -3,6 +3,7 @@
PORTNAME= qemu
PORTVERSION= 2.7.90.g20161116
+PORTREVISION= 1
CATEGORIES= emulators
MASTER_SITES= GH \
LOCAL/nox:dtc \
@@ -56,6 +57,9 @@ USE_RC_SUBR= qemu_user_static
SUB_LIST= NAME=qemu_user_static
CONFIGURE_ARGS+= --disable-tools
.endif
+.else
+# qemu-system-* targets require pixman to build, add an explicit dependency.
+USE_XORG= pixman
.endif
# When static linking we have a build dependency on libglib-2.0.a, otherwise
@@ -144,7 +148,6 @@ CONFIGURE_ARGS+= --disable-sdl
.else
CONFIGURE_ARGS+= --enable-sdl
USE_SDL= sdl
-USE_XORG= pixman
.endif
.if empty(PORT_OPTIONS:MGTK2)