diff options
author | nork <nork@FreeBSD.org> | 2006-08-08 00:10:27 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2006-08-08 00:10:27 +0800 |
commit | 215f9f698c500d9e3e8d308fa8026f71ac695079 (patch) | |
tree | 0f13f61dcc67c1343e7b0d28196273e7575e0413 /emulators/qemu-devel/Makefile | |
parent | c0a292843b7f81046e5a61423797eb76e3d09e89 (diff) | |
download | freebsd-ports-gnome-215f9f698c500d9e3e8d308fa8026f71ac695079.tar.gz freebsd-ports-gnome-215f9f698c500d9e3e8d308fa8026f71ac695079.tar.zst freebsd-ports-gnome-215f9f698c500d9e3e8d308fa8026f71ac695079.zip |
Update to 0.8.2.
PR: ports/101381
Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
Diffstat (limited to 'emulators/qemu-devel/Makefile')
-rw-r--r-- | emulators/qemu-devel/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/emulators/qemu-devel/Makefile b/emulators/qemu-devel/Makefile index 0563c8a4b8c1..9efe2446d401 100644 --- a/emulators/qemu-devel/Makefile +++ b/emulators/qemu-devel/Makefile @@ -6,8 +6,7 @@ # PORTNAME= qemu -PORTVERSION= 0.8.1 -PORTREVISION= 2 +PORTVERSION= 0.8.2 CATEGORIES= emulators MASTER_SITES= http://www.qemu.org/:release \ http://people.fruitsalad.org/nox/qemu/:snapshot \ @@ -75,6 +74,12 @@ pre-everything:: @${ECHO_MSG} "then you also need samba, you can have this port install it by defining" @${ECHO_MSG} "WITH_SAMBA." .endif +.if !defined(WITH_RTL8139_TIMER) + @${ECHO_MSG} "Notice: if you want to use qemu's rtl8139c+ nic with a FreeBSD guest" + @${ECHO_MSG} "(qemu -net nic,model=rtl8139 -net user or tap ... - will use re(4)" + @${ECHO_MSG} "instead of ed(4) which should use less cpu), then you need to enable" + @${ECHO_MSG} "the emulated rtl8139 timer by defining WITH_RTL8139_TIMER." +.endif post-extract: @${MKDIR} ${WRKSRC}/kqemu @@ -90,6 +95,9 @@ post-patch: .if defined(WITH_HACKS_CIRRUS) || defined (WITH_HACKS) @cd ${WRKSRC} ; ${PATCH} --quiet < ${DISTDIR}/${DIST_SUBDIR}/patch3_cirrus .endif +.if defined(WITH_RTL8139_TIMER) + @cd ${WRKSRC} && ${PATCH} --quiet < ${FILESDIR}/rtl8139-re-patch +.endif post-install: @${CAT} ${PKGMESSAGE} |