diff options
author | Juergen Lock <nox@FreeBSD.org> | 2011-07-13 19:59:15 +0000 |
---|---|---|
committer | Juergen Lock <nox@FreeBSD.org> | 2011-07-13 19:59:15 +0000 |
commit | 63d98d05d8b6c0cf7c4160c5ec3a2395d5711a17 (patch) | |
tree | 5f8a56000e24c291c4924d1b6c2c1dc1dd99e5de /emulators/qemu/Makefile | |
parent | Update to 12.0.742.124, string updates. (diff) |
- Add patch and knob (defaulted to on) to support udp networking
and a patch for promiscuous multicast for the emulated e1000 and
eepro100 nics, both to support using qemu with the (also to be
updated) emulators/gns3 port.
- Bump PORTREVISION.
Requested by: Benjamin Epitech <mlspirat42@gmail.com>
(via private email)
Obtained from: http://sourceforge.net/projects/gns-3/files/Qemu/qemu-0.11.0-olive.patch/download (in parts)
Diffstat (limited to 'emulators/qemu/Makefile')
-rw-r--r-- | emulators/qemu/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emulators/qemu/Makefile b/emulators/qemu/Makefile index 6e1dbe3d0202..b208ffa712d9 100644 --- a/emulators/qemu/Makefile +++ b/emulators/qemu/Makefile @@ -7,7 +7,7 @@ PORTNAME= qemu PORTVERSION= 0.11.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SAVANNAH} \ http://bellard.org/qemu/ @@ -34,6 +34,7 @@ OPTIONS= KQEMU "Build with (alpha!) accelerator module" Off \ GNUTLS "gnutls dependency (vnc encryption)" On \ CURL "libcurl dependency (remote images)" On \ PCAP "pcap dependency (networking with bpf)" On \ + GNS3 "gns3 patches (udp, promiscuous multicast)" On \ CDROM_DMA "IDE CDROM DMA" On \ ADD_AUDIO "Emulate more audio hardware (experimental!)" Off \ ALL_TARGETS "Also build non-x86 targets" On @@ -118,6 +119,9 @@ post-patch: .if defined(WITH_PCAP) @cd ${WRKSRC} && ${PATCH} --quiet < ${FILESDIR}/pcap-patch .endif +.if defined(WITH_GNS3) + @cd ${WRKSRC} && ${PATCH} -p1 --quiet < ${FILESDIR}/gns3-patch +.endif .if defined(WITHOUT_CDROM_DMA) @cd ${WRKSRC} && ${PATCH} --quiet < ${FILESDIR}/cdrom-dma-patch .endif |