diff options
author | lioux <lioux@FreeBSD.org> | 2009-11-14 09:04:53 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2009-11-14 09:04:53 +0800 |
commit | 1ec547b334f15d2de6153d636a8098f396436b91 (patch) | |
tree | 370da6d9786a803e2d2c4618bc7d1236efb9152a /emulators | |
parent | 2b35e5081f55b4ef146c2afb65330ce6436e45c2 (diff) | |
download | freebsd-ports-gnome-1ec547b334f15d2de6153d636a8098f396436b91.tar.gz freebsd-ports-gnome-1ec547b334f15d2de6153d636a8098f396436b91.tar.zst freebsd-ports-gnome-1ec547b334f15d2de6153d636a8098f396436b91.zip |
- Do not IGNORE this port on FreeBSD 8 or later releases regardless
of the scheduler installer
- The problem with the ULE scheduler is not reproduceable under
FreeBSD 8.x
- Take over maintainership on previous maintainer suggestion
Approved by: maintainer (previous)
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/win4bsd/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emulators/win4bsd/Makefile b/emulators/win4bsd/Makefile index 1fbc1c7f0a87..a2ed185f43a3 100644 --- a/emulators/win4bsd/Makefile +++ b/emulators/win4bsd/Makefile @@ -13,7 +13,7 @@ MASTER_SITES= ftp://ftp.win4bsd.com/pub/releases/${PORTVERSION}/ DISTNAME= Win4BSD-1.1_63918_i386-freebsd EXTRACT_SUFX= .tbz -MAINTAINER= jwbacon@tds.net +MAINTAINER= lioux@FreeBSD.org COMMENT= Win4BSD Virtual Machine for Windows under BSD LIB_DEPENDS= c.5:${PORTSDIR}/misc/compat5x @@ -40,10 +40,12 @@ SUB_FILES= pkg-message IGNORE= requires system source for installing kqemu, the accelerator that provides native CPU speed in Win4BSD. Please install the system sources in /usr/src (e.g. using sysinstall), and run make again .endif +.if ${OSVERSION} < 800000 SCHED_NAME!= ${SYSCTL} -n kern.sched.name .if ${SCHED_NAME} != "4BSD" IGNORE= requires the traditional 4BSD scheduler. Please rebuild your kernel with options SCHED_4BSD, and run make again .endif +.endif post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' ${WRKSRC}/+POST-* \ |