diff options
author | Juergen Lock <nox@FreeBSD.org> | 2010-04-11 19:42:38 +0800 |
---|---|---|
committer | Juergen Lock <nox@FreeBSD.org> | 2010-04-11 19:42:38 +0800 |
commit | 7052bc7d68fe9056e0372a6f918e4b1ef7cfa5af (patch) | |
tree | c888f37f7377b46c9e011cfb6d56645ecb68d9fd /emulators/qemu/Makefile | |
parent | faa8117bee53c62bf7773d862963a411988e4b3c (diff) | |
download | freebsd-ports-gnome-7052bc7d68fe9056e0372a6f918e4b1ef7cfa5af.tar.gz freebsd-ports-gnome-7052bc7d68fe9056e0372a6f918e4b1ef7cfa5af.tar.zst freebsd-ports-gnome-7052bc7d68fe9056e0372a6f918e4b1ef7cfa5af.zip |
- Fix libcurl probe for emulators/qemu and add proper dependencies and knobs.
- Bump PORTREVISIONs.
PR: ports/145591
Submitted by: gcooper
Diffstat (limited to 'emulators/qemu/Makefile')
-rw-r--r-- | emulators/qemu/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/emulators/qemu/Makefile b/emulators/qemu/Makefile index 9278dd1c89f8..909cb23b6ad4 100644 --- a/emulators/qemu/Makefile +++ b/emulators/qemu/Makefile @@ -7,7 +7,7 @@ PORTNAME= qemu PORTVERSION= 0.11.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SAVANNAH} \ http://bellard.org/qemu/ @@ -32,6 +32,7 @@ OPTIONS= KQEMU "Build with (alpha!) accelerator module" Off \ SAMBA "samba dependency (for -smb)" Off \ SDL "SDL/X dependency (graphical output)" On \ GNUTLS "gnutls dependency (vnc encryption)" On \ + CURL "libcurl dependency (remote images)" On \ PCAP "pcap dependency (networking with bpf)" On \ CDROM_DMA "IDE CDROM DMA" On \ ADD_AUDIO "Emulate more audio hardware (experimental!)" Off \ @@ -62,6 +63,12 @@ CONFIGURE_ARGS+= --disable-vnc-tls LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls .endif +.if defined(WITHOUT_CURL) +CONFIGURE_ARGS+= --disable-curl +.else +LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +.endif + .if defined(WITH_PCAP) CONFIGURE_ARGS+= --enable-pcap .endif |