FreeBSD Bugzilla – Attachment 228190 Details for
Bug 255973
x11-drivers/xf86-video-qxl deprecated/deleted, yet upstream source builds on freebsd 12.2
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Readd xf86-video-xql and remove python27 as dep
xf86-video-xql (text/plain), 4.67 KB, created by
Alexander Vereeken
on 2021-09-26 09:37:51 UTC
(
hide
)
Description:
Readd xf86-video-xql and remove python27 as dep
Filename:
MIME Type:
Creator:
Alexander Vereeken
Created:
2021-09-26 09:37:51 UTC
Size:
4.67 KB
patch
obsolete
>diff --git a/MOVED b/MOVED >index d5c2276480b4..a7bae8e4d078 100644 >--- a/MOVED >+++ b/MOVED >@@ -15536,7 +15536,6 @@ www/waccess||2020-09-19|Has expired: Uses deprecated version of python > www/wadcomblog||2020-09-19|Has expired: Uses deprecated version of python > www/webcheck||2020-09-19|Has expired: Uses deprecated version of python > www/woof||2020-09-19|Has expired: Uses deprecated version of python >-x11-drivers/xf86-video-qxl||2020-09-19|Has expired: uses deprecated version of python > x11-fm/twander||2020-09-19|Has expired: Uses deprecated version of python > x11-wm/compizconfig-python||2020-09-19|Has expired: Uses deprecated version of python > x11-wm/fvwm-crystal||2020-09-19|Has expired: Uses deprecated version of python >diff --git a/x11-drivers/Makefile b/x11-drivers/Makefile >index 2c87e43c0522..e4618dadc95e 100644 >--- a/x11-drivers/Makefile >+++ b/x11-drivers/Makefile >@@ -29,6 +29,7 @@ > SUBDIR += xf86-video-neomagic > SUBDIR += xf86-video-nv > SUBDIR += xf86-video-openchrome >+ SUBDIR += xf86-video-qxl > SUBDIR += xf86-video-r128 > SUBDIR += xf86-video-rendition > SUBDIR += xf86-video-s3 >diff --git a/x11-drivers/xf86-video-qxl/Makefile b/x11-drivers/xf86-video-qxl/Makefile >new file mode 100644 >index 000000000000..9b9d26bb3f46 >--- /dev/null >+++ b/x11-drivers/xf86-video-qxl/Makefile >@@ -0,0 +1,33 @@ >+# $FreeBSD$ >+ >+PORTNAME= xf86-video-qxl >+DISTVERSION= 0.1.5 >+PORTREVISION= 4 >+CATEGORIES= x11-drivers >+ >+MAINTAINER= x11@FreeBSD.org >+COMMENT= X.Org X server -- QXL display driver >+ >+LICENSE= MIT >+ >+BUILD_DEPENDS= spice-protocol>=0.12.10:devel/spice-protocol \ >+ ${LOCALBASE}/include/linux/input.h:devel/evdev-proto >+LIB_DEPENDS= libspice-server.so:devel/libspice-server >+ >+USES= localbase:ldflags pkgconfig python shebangfix xorg \ >+ xorg-cat:driver >+USE_XORG= xfont >+ >+CONFIGURE_ARGS+=--enable-xspice >+ >+python_OLD_CMD= "/usr/bin/python" >+SHEBANG_FILES= scripts/Xspice >+ >+OPTIONS_DEFINE= DOCS >+ >+post-install: >+ ${MKDIR} ${STAGEDIR}${PREFIX}/etc/X11/xorg.conf.d >+ ${INSTALL_DATA} ${WRKSRC}/examples/spiceqxl.xorg.conf.example \ >+ ${STAGEDIR}${PREFIX}/etc/X11/xorg.conf.d/spiceqxl.xorg.conf.example >+ >+.include <bsd.port.mk> >diff --git a/x11-drivers/xf86-video-qxl/distinfo b/x11-drivers/xf86-video-qxl/distinfo >new file mode 100644 >index 000000000000..0a152f7d5154 >--- /dev/null >+++ b/x11-drivers/xf86-video-qxl/distinfo >@@ -0,0 +1,3 @@ >+TIMESTAMP = 1514372367 >+SHA256 (xorg/driver/xf86-video-qxl-0.1.5.tar.bz2) = b18682e04503c6326f7bf7190f3ee50a3d4d69758a2a3cc9af102a6b3f114c92 >+SIZE (xorg/driver/xf86-video-qxl-0.1.5.tar.bz2) = 508266 >diff --git a/x11-drivers/xf86-video-qxl/files/patch-qxl_option_helpers.h b/x11-drivers/xf86-video-qxl/files/patch-qxl_option_helpers.h >new file mode 100644 >index 000000000000..53660f962bff >--- /dev/null >+++ b/x11-drivers/xf86-video-qxl/files/patch-qxl_option_helpers.h >@@ -0,0 +1,11 @@ >+--- src/qxl_option_helpers.h.bak 2017-09-12 12:00:11 UTC >++++ src/qxl_option_helpers.h >+@@ -1,6 +1,8 @@ >+ #ifndef OPTION_HELPERS_H >+ #define OPTION_HELPERS_H >+ >++#define linux >++ >+ #include <xf86Crtc.h> >+ #include <xf86Opt.h> >+ >diff --git a/x11-drivers/xf86-video-qxl/files/patch-spiceqxl_audio.c b/x11-drivers/xf86-video-qxl/files/patch-spiceqxl_audio.c >new file mode 100644 >index 000000000000..9ba92890929e >--- /dev/null >+++ b/x11-drivers/xf86-video-qxl/files/patch-spiceqxl_audio.c >@@ -0,0 +1,14 @@ >+--- src/spiceqxl_audio.c.bak 2017-09-12 12:00:11 UTC >++++ src/spiceqxl_audio.c >+@@ -410,7 +410,10 @@ >+ strcat(fname, "/"); >+ strcat(fname, e->name); >+ >+- f->fd = open(fname, O_RDONLY | O_RSYNC | O_NONBLOCK); >++// f->fd = open(fname, O_RDONLY | O_RSYNC | O_NONBLOCK); >++ // POSIX specifies three different flavors for synchronous I/O: O_SYNC, O_DSYNC, and O_RSYNC. >++ // In BSD, these are all equivalent. >++ f->fd = open(fname, O_RDONLY | O_SYNC | O_NONBLOCK); >+ free(fname); >+ if (f->fd < 0) { >+ ErrorF("playback: open FIFO '%s' failed: %s\n", e->name, strerror(errno)); >diff --git a/x11-drivers/xf86-video-qxl/pkg-descr b/x11-drivers/xf86-video-qxl/pkg-descr >new file mode 100644 >index 000000000000..42e5e054f1d7 >--- /dev/null >+++ b/x11-drivers/xf86-video-qxl/pkg-descr >@@ -0,0 +1,3 @@ >+This package contains the X.Org xf86-video-qxl driver. >+ >+WWW: https://www.x.org/ >diff --git a/x11-drivers/xf86-video-qxl/pkg-plist b/x11-drivers/xf86-video-qxl/pkg-plist >new file mode 100644 >index 000000000000..d6b0686ca6b0 >--- /dev/null >+++ b/x11-drivers/xf86-video-qxl/pkg-plist >@@ -0,0 +1,5 @@ >+lib/xorg/modules/drivers/spiceqxl_drv.so >+lib/xorg/modules/drivers/qxl_drv.so >+bin/Xspice >+%%PORTDOCS%%%%DOCSDIR%%/spiceqxl.xorg.conf.example >+@sample etc/X11/xorg.conf.d/spiceqxl.xorg.conf.example etc/X11/xorg.conf.d/spiceqxl.xorg.conf
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 255973
:
227723
|
228190
|
228191