-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMakefile
183 lines (165 loc) · 4.16 KB
/
Makefile
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# Created by: Kaltashkin Eugene <[email protected]>
# $FreeBSD$
PORTNAME= qemu
DISTVERSION= 5.0.1
CATEGORIES= emulators
MASTER_SITES= https://download.qemu.org/
PKGNAMESUFFIX= -guest-agent
MAINTAINER= [email protected]
COMMENT= QEMU guest-agent utilities
LICENSE= GPLv2
DIST_SUBDIR= qemu/${PORTVERSION}
FILESDIR= ${.CURDIR}/files
HAS_CONFIGURE= yes
USES= gmake gnome pkgconfig python:build tar:xz
USE_GNOME= glib20
USE_RC_SUBR= qemu-guest-agent
MAKE_ENV+= BSD_MAKE="${MAKE}" PREFIX=${PREFIX}
CONFLICTS_INSTALL= qemu-[0-9]* qemu-devel-* qemu-sbruno-*
OPTIONS_EXCLUDE=SAMBA X11 GTK3 OPENGL GNUTLS SASL JPEG PNG CURL \
CDROM_DMA PCAP USBREDIR GNS3 X86_TARGETS DOCS\
STATIC_LINK NCURSES VDE
PLIST= ${.CURDIR}/pkg-plist
DESCR= ${.CURDIR}/pkg-descr
CONFIGURE_ARGS?=--localstatedir=/var --extra-ldflags=-L\"${LOCALBASE}/lib\" \
--mandir=${MANPREFIX}/man \
--prefix=${PREFIX} --cc=${CC} --disable-kvm \
--python=${PYTHON_CMD} \
--extra-cflags=-I${WRKSRC}\ -I${LOCALBASE}/include\ -DPREFIX=\\\"\"${PREFIX}\\\"\"\ -DBSD_GUEST_AGENT\ -DFREEBSD \
--disable-blobs \
--disable-system \
--disable-user \
--disable-linux-user \
--disable-bsd-user \
--disable-docs \
--enable-guest-agent \
--disable-guest-agent-msi \
--disable-pie \
--disable-modules \
--disable-module-upgrades \
--disable-debug-tcg \
--disable-debug-info \
--disable-sparse \
--disable-gnutls \
--disable-nettle \
--disable-gcrypt \
--disable-auth-pam \
--disable-sdl \
--disable-sdl-image \
--disable-gtk \
--disable-vte \
--disable-curses \
--disable-iconv \
--disable-vnc \
--disable-vnc-sasl \
--disable-vnc-jpeg \
--disable-vnc-png \
--disable-cocoa \
--disable-virtfs \
--disable-mpath \
--disable-xen \
--disable-xen-pci-passthrough \
--disable-brlapi \
--disable-curl \
--disable-membarrier \
--disable-fdt \
--disable-kvm \
--disable-hax \
--disable-hvf \
--disable-whpx \
--disable-rdma \
--disable-pvrdma \
--disable-vde \
--disable-netmap \
--disable-linux-aio \
--disable-linux-io-uring \
--disable-cap-ng \
--disable-attr \
--disable-vhost-net \
--disable-vhost-vsock \
--disable-vhost-scsi \
--disable-vhost-crypto \
--disable-vhost-kernel \
--disable-vhost-user \
--disable-spice \
--disable-rbd \
--disable-libiscsi \
--disable-libnfs \
--disable-smartcard \
--disable-libusb \
--disable-live-block-migration \
--disable-usb-redir \
--disable-lzo \
--disable-snappy \
--disable-bzip2 \
--disable-lzfse \
--disable-zstd \
--disable-seccomp \
--disable-coroutine-pool \
--disable-glusterfs \
--disable-tpm \
--disable-libssh \
--disable-numa \
--disable-libxml2 \
--disable-tcmalloc \
--disable-jemalloc \
--disable-avx2 \
--disable-avx512f \
--disable-replication \
--disable-opengl \
--disable-virglrenderer \
--disable-xfsctl \
--disable-qom-cast-debug \
--enable-tools \
--disable-vxhs \
--disable-bochs \
--disable-cloop \
--disable-dmg \
--disable-qcow1 \
--disable-vdi \
--disable-vvfat \
--disable-qed \
--disable-parallels \
--disable-sheepdog \
--disable-crypto-afalg \
--disable-capstone \
--disable-debug-mutex \
--disable-libpmem \
--disable-xkbcommon
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qemu-*
@${RM} ${STAGEDIR}${PREFIX}/bin/qemu-nbd
@${RM} ${STAGEDIR}${PREFIX}/bin/qemu-edid
@${RM} ${STAGEDIR}${PREFIX}/bin/qemu-img
@${RM} ${STAGEDIR}${PREFIX}/bin/qemu-io
@${RMDIR} ${STAGEDIR}${DATADIR}
${MKDIR} ${STAGEDIR}${PREFIX}/qemu
.include <bsd.port.options.mk>
.if !defined(STRIP) || ${STRIP} == ""
CONFIGURE_ARGS+=--disable-strip
.endif
.if ${ARCH} == "amd64"
MAKE_ARGS+= ARCH=x86_64
.endif
.if ${ARCH} == "powerpc"
MAKE_ARGS+= ARCH=ppc
.endif
.if ${ARCH} == "powerpc64"
MAKE_ARGS+= ARCH=ppc64
.endif
.if ${ARCH} == "sparc64"
CONFIGURE_ARGS+= --sparc_cpu=v9
.endif
.if ${OSVERSION} < 1200000
PKGMESSAGE= ${.CURDIR}/pkg-message-11
.else
PKGMESSAGE= ${.CURDIR}/pkg-message
.endif
PLIST_SUB+= LINUXBOOT_DMA=""
# XXX need to disable usb host code on head while it's not ported to the
# new usb stack yet
post-configure:
@${REINPLACE_CMD} -E \
-e "s|^(HOST_USB=)bsd|\1stub|" \
${WRKSRC}/config-host.mak
.include <bsd.port.mk>