diff options
author | cl <cl@pkgsrc.org> | 2004-05-22 16:31:04 +0000 |
---|---|---|
committer | cl <cl@pkgsrc.org> | 2004-05-22 16:31:04 +0000 |
commit | 0687f75e497cd4465fcca36f99a75188ec321357 (patch) | |
tree | 316579f8e19ee0bf8643d441c02ef74a01a2e32f /sysutils/xen12/Makefile | |
parent | dac9df45fa8b33e50af7fabd2d15350cedc63b7b (diff) | |
download | pkgsrc-0687f75e497cd4465fcca36f99a75188ec321357.tar.gz |
add xen12 package:
Xen is is a virtual machine monitor for x86 that supports execution of
multiple guest operating systems with unprecedented levels of performance
and resource isolation. Xen is Open Source software.
See http://www.cl.cam.ac.uk/Research/SRG/netos/xen/ for more details on Xen.
See http://www.netbsd.org/Ports/xen/ for more details on NetBSD/xen.
Diffstat (limited to 'sysutils/xen12/Makefile')
-rw-r--r-- | sysutils/xen12/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sysutils/xen12/Makefile b/sysutils/xen12/Makefile new file mode 100644 index 00000000000..900583b93c8 --- /dev/null +++ b/sysutils/xen12/Makefile @@ -0,0 +1,31 @@ +# $NetBSD: Makefile,v 1.1 2004/05/22 16:31:04 cl Exp $ +# + +DISTNAME= xeno-1.2-src-040418 +PKGNAME= xen12-040418 +CATEGORIES= sysutils +MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/arch/xen/misc/ +EXTRACT_SUFX= .tgz +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} + +MAINTAINER= cl@NetBSD.org +HOMEPAGE= http://www.netbsd.org/Ports/xen/ +COMMENT= Xen Virtual Machine Monitor + +ONLY_FOR_PLATFORM= *-*-i386 + +WRKSRC= ${WRKDIR}/xeno-1.2/xen +ALL_TARGET= default + +USE_PKGINSTALL= yes + +USE_GNU_TOOLS+= make + +post-extract: + @${CP} ${FILESDIR}/gcc333-stdarg.h ${WRKSRC}/include/stdarg.h + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/mdec + ${INSTALL_DATA} ${WRKSRC}/xen.gz ${PREFIX}/mdec/xen-1.2.gz + +.include "../../mk/bsd.pkg.mk" |