aboutsummaryrefslogtreecommitdiffstats
path: root/emulators/kqemu-kmod-devel/Makefile
blob: f1d5fd573e933ba16380f6e55c04438c81f10961 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# New ports collection makefile for:    kqemu-kmod
# Date created:             2005/10/25
# Whom:                 nork@FreeBSD.org
#
# $FreeBSD$
#

PORTNAME=   kqemu
PORTVERSION=    1.4.0.p1
PORTREVISION=   5
CATEGORIES= emulators kld
MASTER_SITES=   http://bellard.org/qemu/ \
        http://qemu.org/ \
        ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= nox
PKGNAMESUFFIX=  -kmod-devel
DISTNAME=   ${PORTNAME}-${PORTVERSION:C/.p/pre/}
DIST_SUBDIR=    kqemu

MAINTAINER= nox@FreeBSD.org
COMMENT=    Kernel Accelerator for QEMU CPU Emulator (development version)

ONLY_FOR_ARCHS= i386 amd64
HAS_CONFIGURE=  yes
USE_GMAKE=  yes
CONFIGURE_ARGS+=    --prefix=${PREFIX} --cc=${CC}
CONFLICTS=  kqemu-kmod-[0-9]*

USE_RC_SUBR=    kqemu

.include <bsd.port.pre.mk>

PORTDOCS=   kqemu-doc.html kqemu-tech.html
PLIST_FILES=    "include/kqemu/kqemu.h"
PLIST_FILES+=   "@dirrm include/kqemu"
PLIST_FILES+=   "@cwd /"
PLIST_FILES+=   ${KMODDIR:C,^/,,}/kqemu.ko
PLIST_FILES+=   "@unexec kldxref ${KMODDIR}"

MAKEFILE=   Makefile.freebsd

.if ${ARCH} == "amd64"
MAKE_ARGS+= ARCH=x86_64
.endif

# install where x11/nvidia-driver does also:
KMODDIR=    /boot/modules

MAKE_ENV+=  KMODDIR="${KMODDIR}"

SYSDIR?=    ${SRC_BASE}/sys
MAKE_ENV+=  SYSDIR="${SYSDIR}"

.if !exists(${SYSDIR}/Makefile)
IGNORE=     requires kernel source to be installed
.endif

.if ${OSVERSION} >= 700024 && ${OSVERSION} < 700053 && !defined(NOKSE)
# XXX this is wrong if you have `nooption KSE' in your kernel config,
# please define NOKSE in that case (no longer a problem after attilio's
# Sun Jul 22 21:35:44 2007 UTC commit removing the KSE ABI incompatiblity)
CFLAGS+=    -DKSE
.endif

CFLAGS+=       ${DEBUG_FLAGS}

post-extract:
.if ${OSVERSION} >= 700024 && ${OSVERSION} < 700053 && !defined(NOKSE)
    @${ECHO_MSG} "Compiling with -DKSE."
    @${ECHO_MSG} "If this is wrong (i.e. you have \`nooption KSE' in your kernel config),"
    @${ECHO_MSG} "then please define NOKSE."
.endif

# 7.1 and head have seperate gdts also on amd64 now so the tss fixup code
# is no longer needed there
post-patch:
.if ${OSVERSION} >= 701100 && (${OSVERSION} < 800000 || ${OSVERSION} >= 800046)
    @cd ${WRKSRC} && ${PATCH} -R --quiet < ${FILESDIR}/patch-tssworkaround
.endif
# Apply extra patches from the qemu-devel list; in the unlikely case that
# these cause regressions please define WITHOUT_EXTRA_PATCHES and post
# details about your host _and_ guest on freebsd-emulation@freebsd.org
#  - Thanx!
.if !defined(WITHOUT_EXTRA_PATCHES)
    for i in ${FILESDIR}/extra-patch-*; do \
        ${PATCH} -d ${WRKSRC} --quiet <$$i;\
    done
.endif

do-build:
    @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} beforedepend && ${LN} -sfh @/sys sys)
    @(cd ${BUILD_WRKSRC}/common; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} Makefile ${MAKE_ARGS} ${ALL_TARGET})
    @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${ALL_TARGET})

do-install:
    @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET})
    ${MKDIR} ${PREFIX}/include/kqemu
    ${INSTALL_DATA} ${WRKSRC}/kqemu.h ${PREFIX}/include/kqemu
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/kqemu-doc.html ${WRKSRC}/kqemu-tech.html \
        ${DOCSDIR}
.endif

.include <bsd.port.post.mk>