View | Details | Raw Unified | Return to bug 255973 | Differences between
and this patch

Collapse All | Expand All

(-)b/MOVED (-1 lines)
Lines 15536-15542 www/waccess||2020-09-19|Has expired: Uses deprecated version of python Link Here
15536
www/wadcomblog||2020-09-19|Has expired: Uses deprecated version of python
15536
www/wadcomblog||2020-09-19|Has expired: Uses deprecated version of python
15537
www/webcheck||2020-09-19|Has expired: Uses deprecated version of python
15537
www/webcheck||2020-09-19|Has expired: Uses deprecated version of python
15538
www/woof||2020-09-19|Has expired: Uses deprecated version of python
15538
www/woof||2020-09-19|Has expired: Uses deprecated version of python
15539
x11-drivers/xf86-video-qxl||2020-09-19|Has expired: uses deprecated version of python
15540
x11-fm/twander||2020-09-19|Has expired: Uses deprecated version of python
15539
x11-fm/twander||2020-09-19|Has expired: Uses deprecated version of python
15541
x11-wm/compizconfig-python||2020-09-19|Has expired: Uses deprecated version of python
15540
x11-wm/compizconfig-python||2020-09-19|Has expired: Uses deprecated version of python
15542
x11-wm/fvwm-crystal||2020-09-19|Has expired: Uses deprecated version of python
15541
x11-wm/fvwm-crystal||2020-09-19|Has expired: Uses deprecated version of python
(-)b/x11-drivers/Makefile (+1 lines)
Lines 29-34 Link Here
29
    SUBDIR += xf86-video-neomagic
29
    SUBDIR += xf86-video-neomagic
30
    SUBDIR += xf86-video-nv
30
    SUBDIR += xf86-video-nv
31
    SUBDIR += xf86-video-openchrome
31
    SUBDIR += xf86-video-openchrome
32
    SUBDIR += xf86-video-qxl
32
    SUBDIR += xf86-video-r128
33
    SUBDIR += xf86-video-r128
33
    SUBDIR += xf86-video-rendition
34
    SUBDIR += xf86-video-rendition
34
    SUBDIR += xf86-video-s3
35
    SUBDIR += xf86-video-s3
(-)b/x11-drivers/xf86-video-qxl/Makefile (+33 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	xf86-video-qxl
4
DISTVERSION=	0.1.5
5
PORTREVISION=	4
6
CATEGORIES=	x11-drivers
7
8
MAINTAINER=	x11@FreeBSD.org
9
COMMENT=	X.Org X server -- QXL display driver
10
11
LICENSE=	MIT
12
13
BUILD_DEPENDS=	spice-protocol>=0.12.10:devel/spice-protocol \
14
		${LOCALBASE}/include/linux/input.h:devel/evdev-proto
15
LIB_DEPENDS=	libspice-server.so:devel/libspice-server
16
17
USES=		localbase:ldflags pkgconfig python shebangfix xorg \
18
		xorg-cat:driver
19
USE_XORG=	xfont
20
21
CONFIGURE_ARGS+=--enable-xspice
22
23
python_OLD_CMD=	"/usr/bin/python"
24
SHEBANG_FILES=	scripts/Xspice
25
26
OPTIONS_DEFINE=	DOCS
27
28
post-install:
29
	${MKDIR} ${STAGEDIR}${PREFIX}/etc/X11/xorg.conf.d
30
	${INSTALL_DATA} ${WRKSRC}/examples/spiceqxl.xorg.conf.example \
31
		${STAGEDIR}${PREFIX}/etc/X11/xorg.conf.d/spiceqxl.xorg.conf.example
32
33
.include <bsd.port.mk>
(-)b/x11-drivers/xf86-video-qxl/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1514372367
2
SHA256 (xorg/driver/xf86-video-qxl-0.1.5.tar.bz2) = b18682e04503c6326f7bf7190f3ee50a3d4d69758a2a3cc9af102a6b3f114c92
3
SIZE (xorg/driver/xf86-video-qxl-0.1.5.tar.bz2) = 508266
(-)b/x11-drivers/xf86-video-qxl/files/patch-qxl_option_helpers.h (+11 lines)
Added Link Here
1
--- src/qxl_option_helpers.h.bak	2017-09-12 12:00:11 UTC
2
+++ src/qxl_option_helpers.h
3
@@ -1,6 +1,8 @@
4
 #ifndef OPTION_HELPERS_H
5
 #define OPTION_HELPERS_H
6
 
7
+#define linux
8
+
9
 #include <xf86Crtc.h>
10
 #include <xf86Opt.h>
11
 
(-)b/x11-drivers/xf86-video-qxl/files/patch-spiceqxl_audio.c (+14 lines)
Added Link Here
1
--- src/spiceqxl_audio.c.bak	2017-09-12 12:00:11 UTC
2
+++ src/spiceqxl_audio.c
3
@@ -410,7 +410,10 @@
4
         strcat(fname, "/");
5
         strcat(fname, e->name);
6
 
7
-        f->fd = open(fname, O_RDONLY | O_RSYNC | O_NONBLOCK);
8
+//        f->fd = open(fname, O_RDONLY | O_RSYNC | O_NONBLOCK);
9
+        // POSIX specifies three different flavors for synchronous I/O: O_SYNC, O_DSYNC, and O_RSYNC.
10
+        // In BSD, these are all equivalent.
11
+        f->fd = open(fname, O_RDONLY | O_SYNC | O_NONBLOCK);
12
         free(fname);
13
         if (f->fd < 0) {
14
             ErrorF("playback: open FIFO '%s' failed: %s\n", e->name, strerror(errno));
(-)b/x11-drivers/xf86-video-qxl/pkg-descr (+3 lines)
Added Link Here
1
This package contains the X.Org xf86-video-qxl driver.
2
3
WWW: https://www.x.org/
(-)b/x11-drivers/xf86-video-qxl/pkg-plist (+5 lines)
Added Link Here
1
lib/xorg/modules/drivers/spiceqxl_drv.so
2
lib/xorg/modules/drivers/qxl_drv.so
3
bin/Xspice
4
%%PORTDOCS%%%%DOCSDIR%%/spiceqxl.xorg.conf.example
5
@sample etc/X11/xorg.conf.d/spiceqxl.xorg.conf.example etc/X11/xorg.conf.d/spiceqxl.xorg.conf

Return to bug 255973