diff options
author | sbruno <sbruno@FreeBSD.org> | 2016-02-19 00:30:29 +0800 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2016-02-19 00:30:29 +0800 |
commit | dfc5085d71f3db3f2fef8e742f15f0821ed1ae9f (patch) | |
tree | b700d530f03b150e781745f1aaa3a3e000cac55d /emulators | |
parent | a388e3e3ce0285abb55d310b9e0f9645135c81d5 (diff) | |
download | freebsd-ports-gnome-dfc5085d71f3db3f2fef8e742f15f0821ed1ae9f.tar.gz freebsd-ports-gnome-dfc5085d71f3db3f2fef8e742f15f0821ed1ae9f.tar.zst freebsd-ports-gnome-dfc5085d71f3db3f2fef8e742f15f0821ed1ae9f.zip |
Attempt to unbreak stage (pointed out by amdmi3/junovitch)
- Add ivshmem-client/server to the pkg-plist of qemu-sbruno.
- Forceably nuke ivshmem-client/server during the build of qemu-user-static.
Bump PORTREVISION.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/qemu-sbruno/Makefile | 1 | ||||
-rw-r--r-- | emulators/qemu-sbruno/pkg-plist | 2 | ||||
-rw-r--r-- | emulators/qemu-user-static/Makefile | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/emulators/qemu-sbruno/Makefile b/emulators/qemu-sbruno/Makefile index 3f25e2639817..b401b26b7ade 100644 --- a/emulators/qemu-sbruno/Makefile +++ b/emulators/qemu-sbruno/Makefile @@ -3,6 +3,7 @@ PORTNAME= qemu PORTVERSION= 2.5.50.g20160215 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= GH \ LOCAL/nox:dtc \ diff --git a/emulators/qemu-sbruno/pkg-plist b/emulators/qemu-sbruno/pkg-plist index 099ad99b3a04..2a6ff15661f5 100644 --- a/emulators/qemu-sbruno/pkg-plist +++ b/emulators/qemu-sbruno/pkg-plist @@ -2,6 +2,8 @@ %%SOFTMMU%%bin/qemu-img %%SOFTMMU%%bin/qemu-io %%SOFTMMU%%bin/qemu-nbd +%%SOFTMMU%%bin/ivshmem-client +%%SOFTMMU%%bin/ivshmem-server %%NONX86%%bin/qemu-system-aarch64 %%NONX86%%bin/qemu-system-alpha %%NONX86%%bin/qemu-system-arm diff --git a/emulators/qemu-user-static/Makefile b/emulators/qemu-user-static/Makefile index 26eeecda7895..0e9368bf17f3 100644 --- a/emulators/qemu-user-static/Makefile +++ b/emulators/qemu-user-static/Makefile @@ -18,6 +18,8 @@ post-install: @${RM} -r ${STAGEDIR}${PREFIX}/bin/qemu-img @${RM} -r ${STAGEDIR}${PREFIX}/bin/qemu-io @${RM} -r ${STAGEDIR}${PREFIX}/bin/qemu-nbd + @${RM} -r ${STAGEDIR}${PREFIX}/bin/ivshmem-client + @${RM} -r ${STAGEDIR}${PREFIX}/bin/ivshmem-server @${MV} ${STAGEDIR}${PREFIX}/etc/rc.d ${WRKDIR} @${RM} -r ${STAGEDIR}${PREFIX}/etc .if exists(/usr/sbin/binmiscctl) |