ef52fdb368
o sample qemu-ifup o permit -net tap,ifname=/dev/tun1 to actually use tun1 from Reyk Floeter reyk at openbsd dot org o re-enable pcnet bump PKGNAME
38 lines
882 B
Makefile
38 lines
882 B
Makefile
# $OpenBSD: Makefile,v 1.12 2006/02/16 16:27:44 todd Exp $
|
|
|
|
# no success building on other archs yet
|
|
ONLY_FOR_ARCHS= amd64 arm i386 powerpc
|
|
|
|
COMMENT= "multi system emulator"
|
|
DISTNAME= qemu-0.8.0
|
|
PKGNAME= ${DISTNAME}p2
|
|
CATEGORIES= emulators
|
|
|
|
HOMEPAGE= http://fabrice.bellard.free.fr/qemu/
|
|
|
|
MAINTAINER= Todd T. Fries <todd@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
BUILD_DEPENDS= ::textproc/texi2html
|
|
LIB_DEPENDS= SDL::devel/sdl
|
|
USE_GMAKE= Yes
|
|
USE_X11= Yes
|
|
WANTLIB= m z ossaudio X11 Xext usbhid util pthread c
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
PATCH_LIST= patch-* misc-*
|
|
.endif
|
|
|
|
post-install:
|
|
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/qemu
|
|
@${INSTALL_SCRIPT} ${FILESDIR}/qemu-ifup ${PREFIX}/share/examples/qemu
|
|
|
|
.include <bsd.port.mk>
|