- Please welcome Xorg 7.5.1
The X-Server has been patched to the latest 1.7.X series, drivers and fonts have been updated to the latest versions. This update includes some components from Xorg 7.6 with a lot of improvements, and it seems that the performance is much better than the old version. Also this Update fix build issues with clang and binutils 2.17.50 in current, remove 6.X gruft and de-author pkg-descr. I would like to thank: Beat Gaetzi Dima Panov Koop Mast Eitan Adler and all Testers. PR: ports/147646 ports/148035 ports/148744 ports/150223 ports/152889 ports/154457
This commit is contained in:
parent
0c4a162c97
commit
d594ccc94f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=269720
604 changed files with 1409 additions and 2197 deletions
|
@ -1995,6 +1995,9 @@ X_FONTS_TYPE1_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-type1
|
|||
X_FONTS_ALIAS_PORT= ${PORTSDIR}/x11-fonts/font-alias
|
||||
|
||||
.if defined(USE_IMAKE)
|
||||
CONFIGURE_ENV+= IMAKECPP="${CPP}"
|
||||
MAKE_ENV+= IMAKECPP="${CPP}"
|
||||
MAKE_FLAGS?= CC="${CC}" CXX="${CXX}"
|
||||
BUILD_DEPENDS+= imake:${X_IMAKE_PORT}
|
||||
.endif
|
||||
|
||||
|
|
|
@ -64,6 +64,7 @@ IGNORE= is for sparc64 only
|
|||
|
||||
. if ${XORG_CAT} == "font"
|
||||
FONTDIR?= ${PORTNAME:C/.*-//g:S/type/Type/:S/ttf/TTF/:S/speedo/Speedo/}
|
||||
CONFIGURE_ARGS+= --with-fontrootdir=${PREFIX}/lib/X11/fonts
|
||||
CONFIGURE_ENV+= FONTROOTDIR=${PREFIX}/lib/X11/fonts
|
||||
NEED_MKFONTFOO= yes
|
||||
|
||||
|
@ -101,8 +102,8 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir \
|
|||
post-install:
|
||||
. if ${INSTALLS_TTF} == "yes"
|
||||
. for _fontdir in ${FONTDIR}
|
||||
@${ECHO_CMD} "@exec fc-cache -v %D/lib/X11/fonts/${_fontdir} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec fc-cache -v %D/lib/X11/fonts/${_fontdir} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@exec fc-cache -s %D/lib/X11/fonts/${_fontdir} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec fc-cache -s %D/lib/X11/fonts/${_fontdir} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec rmdir %D/lib/X11/fonts/${_fontdir} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
. endfor
|
||||
. endif
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= imake
|
||||
PORTVERSION= 1.0.3
|
||||
PORTVERSION= 1.0.4
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= devel
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/util/imake-1.0.3.tar.bz2) = ff553c4646edcc9e76b7308991ad421a
|
||||
SHA256 (xorg/util/imake-1.0.3.tar.bz2) = 90015244dd7a32594162d2be6e934a258894d1ca2c37422ef727a7f1c0b553ea
|
||||
SIZE (xorg/util/imake-1.0.3.tar.bz2) = 139230
|
||||
SHA256 (xorg/util/imake-1.0.4.tar.bz2) = acb27ff09e3083000441a8d555fbedbf35ecb4ad52d2bd5b8680dce853f146fe
|
||||
SIZE (xorg/util/imake-1.0.4.tar.bz2) = 140773
|
||||
|
|
26
devel/imake/files/patch-xmkmf.cpp
Normal file
26
devel/imake/files/patch-xmkmf.cpp
Normal file
|
@ -0,0 +1,26 @@
|
|||
--- work/imake-1.0.2/xmkmf.cpp 2004-04-23 18:42:00.000000000 +0000
|
||||
+++ xmkmf.cpp 2009-12-14 20:51:01.695597560 +0000
|
||||
@@ -53,6 +53,10 @@
|
||||
args="-I$topdir/config/cf -DTOPDIR=$topdir -DCURDIR=$curdir"
|
||||
fi
|
||||
|
||||
+if [ -n "$CPP" -a -z "$IMAKECPP" ];then
|
||||
+ export IMAKECPP=$CPP
|
||||
+fi
|
||||
+
|
||||
echo imake $imake_defines $args
|
||||
case "$do_all" in
|
||||
yes)
|
||||
@@ -68,3 +72,12 @@
|
||||
imake $imake_defines $args
|
||||
;;
|
||||
esac
|
||||
+
|
||||
+if [ -f "Makefile" ];then
|
||||
+ if [ -n "$CC" ];then
|
||||
+ sed -i "" -e "s| CC = cc| CC = $CC|" Makefile
|
||||
+ fi
|
||||
+ if [ -n "$CXX" ];then
|
||||
+ sed -i "" -e "s| CXX = c++| CXX = $CXX|" Makefile
|
||||
+ fi
|
||||
+fi
|
|
@ -2,6 +2,3 @@ This package contains X.Org's imake, imake config files, and other build-related
|
|||
tools.
|
||||
|
||||
WWW: http://www.x.org/
|
||||
|
||||
- Eric Anholt
|
||||
anholt@FreeBSD.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= libpciaccess
|
||||
PORTVERSION= 0.12.0
|
||||
PORTVERSION= 0.12.1
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -16,7 +16,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/pciids/pci.ids:${PORTSDIR}/misc/pciids
|
|||
# XXX - Is it a runtime dep too?
|
||||
RUN_DEPENDS= ${LOCALBASE}/share/pciids/pci.ids:${PORTSDIR}/misc/pciids
|
||||
|
||||
CONFIGURE_ARGS= --with-pciids-path=${LOCALBASE}/share/pciids
|
||||
CONFIGURE_ARGS+= --with-pciids-path=${LOCALBASE}/share/pciids
|
||||
|
||||
XORG_CAT= lib
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/lib/libpciaccess-0.12.0.tar.bz2) = 285e07976274572e1f1e68edee09b70a
|
||||
SHA256 (xorg/lib/libpciaccess-0.12.0.tar.bz2) = f6b3c00e1c0aab0729563115d3d798e14c9210b4e10fccb484efe1c5eae85657
|
||||
SIZE (xorg/lib/libpciaccess-0.12.0.tar.bz2) = 294535
|
||||
SHA256 (xorg/lib/libpciaccess-0.12.1.tar.bz2) = cc47d7f0e48cf4eed972916b536fdc97788d7521915e3ae1cc92d540776d7344
|
||||
SIZE (xorg/lib/libpciaccess-0.12.1.tar.bz2) = 326217
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
This package contains the pciaccess library.
|
||||
|
||||
WWW: http://www.freedesktop.org/Software/xlibs
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= makedepend
|
||||
PORTVERSION= 1.0.2
|
||||
PORTVERSION= 1.0.3
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= devel
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/util/makedepend-1.0.2.tar.bz2) = 62e58330fe8d1e3e28c7a45779833a48
|
||||
SHA256 (xorg/util/makedepend-1.0.2.tar.bz2) = 41a2b090a32d7c5b2654783772248aba472702686e30018cfd9907137a967657
|
||||
SIZE (xorg/util/makedepend-1.0.2.tar.bz2) = 116339
|
||||
SHA256 (xorg/util/makedepend-1.0.3.tar.bz2) = 3a251d30e567e4eab109be486918887635e08963195b80d193f0ee65cef8b737
|
||||
SIZE (xorg/util/makedepend-1.0.3.tar.bz2) = 123703
|
||||
|
|
|
@ -12,3 +12,5 @@ Every file that a sourcefile includes, directly or indirectly, is what
|
|||
makedepend calls a "dependency". These dependencies are then written to a
|
||||
makefile in such a way that make will know which object files must be
|
||||
recompiled when a dependency has changed.
|
||||
|
||||
WWW: http://www.x.org/archive/X11R7.5/doc/man/man1/makedepend.1.html
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xorg-macros
|
||||
PORTVERSION= 1.6.0
|
||||
PORTVERSION= 1.11.0
|
||||
CATEGORIES= devel x11
|
||||
DISTNAME= util-macros-$(PORTVERSION)
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/util/util-macros-1.6.0.tar.bz2) = 6a0ac8efb11ad9b867f2e08ef87ad4c4
|
||||
SHA256 (xorg/util/util-macros-1.6.0.tar.bz2) = 9d074937d3187f3c776e09a762ea996e0ca28e9784bac57de27d36f9b6955cd1
|
||||
SIZE (xorg/util/util-macros-1.6.0.tar.bz2) = 61264
|
||||
SHA256 (xorg/util/util-macros-1.11.0.tar.bz2) = e8534d56a4f8475acecee1c9faf5193340a80785f2c80858fd233595cb3fcacf
|
||||
SIZE (xorg/util/util-macros-1.11.0.tar.bz2) = 67786
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
This package contains the aclocal macros needed for building xorg modules
|
||||
from upstream source.
|
||||
|
||||
- Eric Anholt
|
||||
anholt@FreeBSD.org
|
||||
WWW: http://cgit.freedesktop.org/xorg/util/macros/
|
||||
|
|
|
@ -21,9 +21,9 @@ MAKE_JOBS_UNSAFE= yes
|
|||
|
||||
USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto
|
||||
|
||||
.ifndef WITHOUT_NOUVEAU
|
||||
EXTRA_PATCHES+= ${FILESDIR}/mesalib74-configure
|
||||
.endif
|
||||
EXTRA_PATCHES+= ${FILESDIR}/patch-mach64_context.h \
|
||||
${FILESDIR}/patch-sis_context.h
|
||||
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC}/src/mesa; ${GMAKE} install-dri
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
MD5 (MesaLib-7.4.4.tar.bz2) = b66528d314c574dccbe0ed963cac5e93
|
||||
SHA256 (MesaLib-7.4.4.tar.bz2) = eaf73d7a3a2dc959ddc0753abaa18160c64bec00b35bf4a0c96040b2072918ec
|
||||
SIZE (MesaLib-7.4.4.tar.bz2) = 3375615
|
||||
MD5 (MesaLib-7.6.1.tar.bz2) = 7db4617e9e10ad3aca1b64339fd71b7d
|
||||
SHA256 (MesaLib-7.6.1.tar.bz2) = 701f0e4cb85d6298181651b780d1c0a439fadd02aad29ee6623fc05588bb8d44
|
||||
SIZE (MesaLib-7.6.1.tar.bz2) = 4886995
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- configure.orig 2009-03-28 00:59:46.000000000 +0000
|
||||
+++ configure 2009-04-05 11:53:44.000000000 +0000
|
||||
@@ -5739,7 +5739,7 @@
|
||||
;;
|
||||
*freebsd* | dragonfly*)
|
||||
case "$host_cpu" in
|
||||
- i*86|x86_64) default_driver="dri";;
|
||||
+ i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
|
||||
esac
|
||||
;;
|
||||
esac
|
|
@ -3,6 +3,3 @@ DRI. With an X Server configured for the DRI they allow direct rendering of
|
|||
hardware-accelerated OpenGL.
|
||||
|
||||
WWW: http://dri.sourceforge.net/
|
||||
|
||||
- Eric Anholt
|
||||
anholt@FreeBSD.org
|
||||
|
|
|
@ -17,10 +17,6 @@ LIB_DEPENDS+= drm:${PORTSDIR}/graphics/libdrm \
|
|||
|
||||
USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto:both
|
||||
|
||||
.ifndef WITHOUT_NOUVEAU
|
||||
EXTRA_PATCHES+= ${FILESDIR}/mesalib74-configure
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
${RM} -f ${WRKSRC}/include/GL/glu*.h
|
||||
cd ${WRKSRC}/src/mesa; ${GMAKE} install-libgl
|
||||
|
|
|
@ -29,6 +29,7 @@ PLIST_SUB+= MESALIB76= MESALIB74="@comment "
|
|||
MESABASEVERSION= 7.4.4
|
||||
MESASUBVERSION=
|
||||
PLIST_SUB+= MESALIB74= MESALIB76="@comment "
|
||||
EXTRA_PATCHES+= ${PATCHDIR}/mesalib74-configure
|
||||
.endif
|
||||
|
||||
MASTER_SITES?= ftp://ftp.freedesktop.org/pub/mesa/${MESABASEVERSION}/:mesa,glut,demos
|
||||
|
@ -51,7 +52,7 @@ ALL_TARGET= default
|
|||
#MAKE_ARGS= SHELL=${SH}
|
||||
#CFLAGS+= -DUSE_XSHM -DHZ=100
|
||||
|
||||
#FILESDIR= ${.CURDIR}/../../graphics/libGL/files
|
||||
PATCHDIR= ${.CURDIR}/../../graphics/libGL/files
|
||||
WRKSRC= ${WRKDIR}/Mesa-${MESABASEVERSION}
|
||||
|
||||
.if !defined(ARCH)
|
||||
|
|
12
graphics/libGL/files/patch-src__mesa__x86-64__glapi_x86-64.S
Normal file
12
graphics/libGL/files/patch-src__mesa__x86-64__glapi_x86-64.S
Normal file
|
@ -0,0 +1,12 @@
|
|||
--- ./src/mesa/x86-64/glapi_x86-64.S.orig 2009-03-13 04:28:49.000000000 +0100
|
||||
+++ ./src/mesa/x86-64/glapi_x86-64.S 2011-01-28 18:12:18.000000000 +0100
|
||||
@@ -73,7 +73,8 @@ _x86_64_get_dispatch:
|
||||
|
||||
.p2align 4,,15
|
||||
_x86_64_get_dispatch:
|
||||
- movq _gl_DispatchTSD(%rip), %rdi
|
||||
+ movq _gl_DispatchTSD@GOTPCREL(%rip), %rax
|
||||
+ movl (%rax), %edi
|
||||
jmp pthread_getspecific@PLT
|
||||
|
||||
#elif defined(THREADS)
|
65
graphics/libGL/files/patch-src__mesa__x86-64__xform4.S
Normal file
65
graphics/libGL/files/patch-src__mesa__x86-64__xform4.S
Normal file
|
@ -0,0 +1,65 @@
|
|||
--- ./src/mesa/x86-64/xform4.S.orig 2009-01-22 18:38:35.000000000 +0100
|
||||
+++ ./src/mesa/x86-64/xform4.S 2011-01-28 18:09:55.000000000 +0100
|
||||
@@ -53,7 +53,7 @@ _mesa_x86_64_transform_points4_general:
|
||||
* rdx = source
|
||||
*/
|
||||
movl V4F_COUNT(%rdx), %ecx /* count */
|
||||
- movzx V4F_STRIDE(%rdx), %eax /* stride */
|
||||
+ movzbl V4F_STRIDE(%rdx), %eax /* stride */
|
||||
|
||||
movl %ecx, V4F_COUNT(%rdi) /* set dest count */
|
||||
movl $4, V4F_SIZE(%rdi) /* set dest size */
|
||||
@@ -135,7 +135,7 @@ _mesa_x86_64_transform_points4_3d:
|
||||
movaps 16(%rax), %xmm10
|
||||
|
||||
movl V4F_COUNT(%rdx), %ecx /* count */
|
||||
- movzx V4F_STRIDE(%rdx), %eax /* stride */
|
||||
+ movzbl V4F_STRIDE(%rdx), %eax /* stride */
|
||||
|
||||
movl %ecx, V4F_COUNT(%rdi) /* set dest count */
|
||||
movl $4, V4F_SIZE(%rdi) /* set dest size */
|
||||
@@ -195,7 +195,7 @@ p4_3d_done:
|
||||
_mesa_x86_64_transform_points4_identity:
|
||||
|
||||
movl V4F_COUNT(%rdx), %ecx /* count */
|
||||
- movzx V4F_STRIDE(%rdx), %eax /* stride */
|
||||
+ movzbl V4F_STRIDE(%rdx), %eax /* stride */
|
||||
|
||||
movl %ecx, V4F_COUNT(%rdi) /* set dest count */
|
||||
movl $4, V4F_SIZE(%rdi) /* set dest size */
|
||||
@@ -223,7 +223,7 @@ p4_identity_done:
|
||||
_mesa_3dnow_transform_points4_3d_no_rot:
|
||||
|
||||
movl V4F_COUNT(%rdx), %ecx /* count */
|
||||
- movzx V4F_STRIDE(%rdx), %eax /* stride */
|
||||
+ movzbl V4F_STRIDE(%rdx), %eax /* stride */
|
||||
|
||||
movl %ecx, V4F_COUNT(%rdi) /* set dest count */
|
||||
movl $4, V4F_SIZE(%rdi) /* set dest size */
|
||||
@@ -287,7 +287,7 @@ p4_3d_no_rot_done:
|
||||
_mesa_3dnow_transform_points4_perspective:
|
||||
|
||||
movl V4F_COUNT(%rdx), %ecx /* count */
|
||||
- movzx V4F_STRIDE(%rdx), %eax /* stride */
|
||||
+ movzbl V4F_STRIDE(%rdx), %eax /* stride */
|
||||
|
||||
movl %ecx, V4F_COUNT(%rdi) /* set dest count */
|
||||
movl $4, V4F_SIZE(%rdi) /* set dest size */
|
||||
@@ -353,7 +353,7 @@ p4_perspective_done:
|
||||
_mesa_3dnow_transform_points4_2d_no_rot:
|
||||
|
||||
movl V4F_COUNT(%rdx), %ecx /* count */
|
||||
- movzx V4F_STRIDE(%rdx), %eax /* stride */
|
||||
+ movzbl V4F_STRIDE(%rdx), %eax /* stride */
|
||||
|
||||
movl %ecx, V4F_COUNT(%rdi) /* set dest count */
|
||||
movl $4, V4F_SIZE(%rdi) /* set dest size */
|
||||
@@ -408,7 +408,7 @@ p4_2d_no_rot_done:
|
||||
_mesa_3dnow_transform_points4_2d:
|
||||
|
||||
movl V4F_COUNT(%rdx), %ecx /* count */
|
||||
- movzx V4F_STRIDE(%rdx), %eax /* stride */
|
||||
+ movzbl V4F_STRIDE(%rdx), %eax /* stride */
|
||||
|
||||
movl %ecx, V4F_COUNT(%rdi) /* set dest count */
|
||||
movl $4, V4F_SIZE(%rdi) /* set dest size */
|
11
graphics/libGL/files/patch-src__mesa__x86__glapi_x86.S
Normal file
11
graphics/libGL/files/patch-src__mesa__x86__glapi_x86.S
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- ./src/mesa/x86/glapi_x86.S.orig 2009-03-13 04:28:49.000000000 +0100
|
||||
+++ ./src/mesa/x86/glapi_x86.S 2011-01-28 18:11:56.000000000 +0100
|
||||
@@ -47,7 +47,7 @@
|
||||
#define GL_OFFSET(x) CODEPTR(REGOFF(4 * x, EAX))
|
||||
|
||||
#if defined(GNU_ASSEMBLER) && !defined(__DJGPP__) && !defined(__MINGW32__)
|
||||
-#define GLOBL_FN(x) GLOBL x ; .type x, function
|
||||
+#define GLOBL_FN(x) GLOBL x ; .type x, @function
|
||||
#else
|
||||
#define GLOBL_FN(x) GLOBL x
|
||||
#endif
|
|
@ -0,0 +1,11 @@
|
|||
--- ./src/mesa/x86/read_rgba_span_x86.S.orig 2008-08-25 16:46:47.000000000 +0200
|
||||
+++ ./src/mesa/x86/read_rgba_span_x86.S 2011-01-28 18:10:06.000000000 +0100
|
||||
@@ -648,7 +648,7 @@ _generic_read_RGBA_span_RGB565_MMX:
|
||||
testl $0x01, %ecx
|
||||
je .L01
|
||||
|
||||
- movzxw (%eax), %ecx
|
||||
+ movzwl (%eax), %ecx
|
||||
movd %ecx, %mm4
|
||||
|
||||
pshufw $0x00, %mm4, %mm0
|
|
@ -2,6 +2,3 @@ This package contains the OpenGL library, which can perform rendering over GLX
|
|||
or using the Direct Rendering Infrastructure.
|
||||
|
||||
WWW: http://www.freedesktop.org/Software/xorg
|
||||
|
||||
- Eric Anholt
|
||||
anholt@FreeBSD.org
|
||||
|
|
|
@ -14,10 +14,6 @@ COMMENT= OpenGL utility library
|
|||
USE_GL= gl
|
||||
USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto
|
||||
|
||||
.ifndef WITHOUT_NOUVEAU
|
||||
EXTRA_PATCHES+= ${FILESDIR}/mesalib74-configure
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC}/src/glu; ${GMAKE} install
|
||||
${INSTALL_DATA} ${WRKSRC}/include/GL/glu*.h ${PREFIX}/include/GL/
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- configure.orig 2009-03-28 00:59:46.000000000 +0000
|
||||
+++ configure 2009-04-05 11:53:44.000000000 +0000
|
||||
@@ -5739,7 +5739,7 @@
|
||||
;;
|
||||
*freebsd* | dragonfly*)
|
||||
case "$host_cpu" in
|
||||
- i*86|x86_64) default_driver="dri";;
|
||||
+ i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
|
||||
esac
|
||||
;;
|
||||
esac
|
|
@ -1,6 +1,3 @@
|
|||
This package contains the OpenGL utility library.
|
||||
|
||||
WWW: http://www.freedesktop.org/Software/xorg
|
||||
|
||||
- Eric Anholt
|
||||
anholt@FreeBSD.org
|
||||
|
|
|
@ -17,10 +17,6 @@ LIB_DEPENDS+= Xm.3:${PORTSDIR}/x11-toolkits/open-motif
|
|||
USE_GL= gl
|
||||
USE_XORG= glproto xt x11 xext xxf86vm xdamage xfixes dri2proto
|
||||
|
||||
.ifndef WITHOUT_NOUVEAU
|
||||
EXTRA_PATCHES+= ${FILESDIR}/mesalib74-configure
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC}/src/glw; ${GMAKE} install
|
||||
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- configure.orig 2009-03-28 00:59:46.000000000 +0000
|
||||
+++ configure 2009-04-05 11:53:44.000000000 +0000
|
||||
@@ -5739,7 +5739,7 @@
|
||||
;;
|
||||
*freebsd* | dragonfly*)
|
||||
case "$host_cpu" in
|
||||
- i*86|x86_64) default_driver="dri";;
|
||||
+ i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
|
||||
esac
|
||||
;;
|
||||
esac
|
|
@ -1,6 +1,3 @@
|
|||
This package contains the OpenGL widgets library.
|
||||
|
||||
WWW: http://www.mesa3d.org/
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
|
|
|
@ -15,10 +15,6 @@ COMMENT= OpenGL utility toolkit
|
|||
USE_GL= glu
|
||||
USE_XORG= glproto x11 xext xxf86vm xdamage xfixes xi xmu dri2proto
|
||||
|
||||
.ifndef WITHOUT_NOUVEAU
|
||||
EXTRA_PATCHES+= ${FILESDIR}/mesalib74-configure
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC}/src/glut/glx; ${GMAKE} install
|
||||
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- configure.orig 2009-03-28 00:59:46.000000000 +0000
|
||||
+++ configure 2009-04-05 11:53:44.000000000 +0000
|
||||
@@ -5739,7 +5739,7 @@
|
||||
;;
|
||||
*freebsd* | dragonfly*)
|
||||
case "$host_cpu" in
|
||||
- i*86|x86_64) default_driver="dri";;
|
||||
+ i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
|
||||
esac
|
||||
;;
|
||||
esac
|
|
@ -21,6 +21,10 @@ DATADIR= ${PREFIX}/share/${PKGNAMEPREFIX}${PORTNAME}
|
|||
|
||||
OPTIONS= NVIDIA_GL "Use NVIDIA's libraries" off
|
||||
|
||||
EXTRA_PATCHES+= ${FILESDIR}/patch-progs-xdemos-glxpixmap.c \
|
||||
${FILESDIR}/patch-progs-xdemos-yuvrect_client.c
|
||||
|
||||
|
||||
do-install:
|
||||
@for i in demos xdemos; do \
|
||||
cd ${WRKSRC}/progs/$$i; \
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- configure.orig 2009-03-28 00:59:46.000000000 +0000
|
||||
+++ configure 2009-04-05 11:53:44.000000000 +0000
|
||||
@@ -5739,7 +5739,7 @@
|
||||
;;
|
||||
*freebsd* | dragonfly*)
|
||||
case "$host_cpu" in
|
||||
- i*86|x86_64) default_driver="dri";;
|
||||
+ i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
|
||||
esac
|
||||
;;
|
||||
esac
|
|
@ -1,5 +1,4 @@
|
|||
This package contains xclock, a program for the X Window System that display
|
||||
the time in analog or digital form.
|
||||
|
||||
- Joel Dahl
|
||||
joel@FreeBSD.org
|
||||
WWW: http://www.freedesktop.org/Software/xapps
|
||||
|
|
|
@ -13,6 +13,7 @@ MASTER_SITES= http://www.chillt.de/bsdwacom/:bsdwacom \
|
|||
SF/linuxwacom/linuxwacom/${WACOM_VERSION}:linuxwacom
|
||||
DISTFILES= ${BSDWACOM}.tbz:bsdwacom \
|
||||
${LINUXWACOM}.tar.bz2:linuxwacom
|
||||
EXTRACT_ONLY= ${BSDWACOM}.tbz
|
||||
|
||||
MAINTAINER= kamikaze@bsdforen.de
|
||||
COMMENT= X.Org Wacom tablet driver and kernel module
|
||||
|
@ -22,7 +23,6 @@ MANCOMPRESSED= yes
|
|||
|
||||
USE_GMAKE= yes
|
||||
USE_RC_SUBR= wacom
|
||||
USE_LDCONFIG= no
|
||||
|
||||
KMODDIR?= /boot/modules
|
||||
XINPUTMODDIR= lib/xorg/modules/input
|
||||
|
@ -44,18 +44,20 @@ BSDWACOM= bsdwacom-${KLD_VERSION}
|
|||
WACOM_VERSION= 0.8.2-2
|
||||
KLD_VERSION= 40
|
||||
|
||||
OPTIONS= UWACOMKLD "Install USB kernel module (ignored on 8.x)" ${KMOD_SUPPORTED}
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} >= 800064
|
||||
OPTIONS= UWACOMKLD "Install USB kernel module (not supported on 8.x)" Off
|
||||
.else
|
||||
OPTIONS= UWACOMKLD "Install USB kernel module (not supported on 8.x)" On
|
||||
.endif
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${OSVERSION} >= 800064
|
||||
KMOD_SUPPORTED= Off
|
||||
.undef WITH_UWACOMKLD
|
||||
.else
|
||||
KMOD_SUPPORTED= On
|
||||
.endif
|
||||
|
||||
.if defined(WITH_UWACOMKLD)
|
||||
.if ${OSVERSION} >= 800064
|
||||
BROKEN= does not build with USB support
|
||||
.endif
|
||||
PLIST_SUB+= UWACOMKLD="uwacom.ko"
|
||||
PORTTYPE= usb
|
||||
.else
|
||||
|
@ -63,22 +65,17 @@ PLIST_SUB+= UWACOMKLD="@noinst UWACOMKLD uwacom.ko"
|
|||
PORTTYPE= serial
|
||||
.endif
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
BROKEN= does not compile on 6.X
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
@${LN} -s ../${LINUXWACOM} ${WRKDIR}/linuxwacom/
|
||||
|
||||
do-configure:
|
||||
@cd ${WRKDIR}/linuxwacom && ${SETENV} ${MAKE_ENV} ./run_configure
|
||||
@cd ${WRKDIR}/linuxwacom \
|
||||
&& ${LN} -s ${DISTDIR}/${DIST_SUBDIR}/${LINUXWACOM}.tar.bz2 \
|
||||
&& ${SETENV} ${MAKE_ENV} ./run_configure
|
||||
|
||||
do-build:
|
||||
.if defined(WITH_UWACOMKLD)
|
||||
@cd ${WRKDIR}/uwacom \
|
||||
&& ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_ARGS}
|
||||
.endif
|
||||
@cd ${WRKDIR}/${LINUXWACOM} \
|
||||
@cd ${WRKDIR}/linuxwacom/${LINUXWACOM} \
|
||||
&& ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS}
|
||||
|
||||
do-install:
|
||||
|
@ -88,7 +85,7 @@ do-install:
|
|||
.endif
|
||||
@${MKDIR} ${PREFIX}/${XINPUTMODDIR} ${PREFIX}/${MAN4DIR}
|
||||
@cd ${WRKDIR}/linuxwacom/${LINUXWACOM}/src/util/ \
|
||||
&& ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET}
|
||||
&& ${SETENV} ${MAKE_ENV} ${GMAKE} install
|
||||
@${INSTALL} ${WRKDIR}/linuxwacom/${LINUXWACOM}/src/xdrv/wacom_drv.so \
|
||||
${PREFIX}/${XINPUTMODDIR}/
|
||||
@${INSTALL_MAN} ${WRKDIR}/linuxwacom/${LINUXWACOM}/src/wacom.4x.gz \
|
||||
|
@ -101,8 +98,8 @@ plist: clean configure
|
|||
@cd ${WRKDIR}/linuxwacom \
|
||||
&& ${SETENV} ${MAKE_ENV} PREFIX=${WRKDIR}/plist ./run_configure
|
||||
@${MKDIR} ${WRKDIR}/plist
|
||||
@cd ${WRKDIR}/${LINUXWACOM}/src/util \
|
||||
&& ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET}
|
||||
@cd ${WRKDIR}/linuxwacom/${LINUXWACOM}/src/util \
|
||||
&& ${SETENV} ${MAKE_ENV} ${GMAKE} install
|
||||
@cd ${WRKDIR}/linuxwacom \
|
||||
&& ${SETENV} ${MAKE_ENV} ./run_configure
|
||||
@${FIND} ${WRKDIR}/plist/ -not -type d \
|
||||
|
@ -120,4 +117,4 @@ post-install:
|
|||
@${ECHO} "===> Displaying pkg-message."
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1,21 +1,17 @@
|
|||
--- linuxwacom/run_configure.orig 2008-12-26 02:09:57.000000000 +0100
|
||||
+++ linuxwacom/run_configure 2010-05-13 22:44:05.000000000 +0200
|
||||
@@ -1,10 +1,8 @@
|
||||
--- linuxwacom/run_configure.orig 2009-01-21 11:26:52.000000000 +0100
|
||||
+++ linuxwacom/run_configure 2009-01-21 11:27:00.000000000 +0100
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
# $Id: run_configure 40 2008-12-26 01:08:35Z undo $
|
||||
|
||||
-LINUXWACOM=0.8.2
|
||||
+LINUXWACOM=0.8.2-2
|
||||
|
||||
-rm -rf linuxwacom-${LINUXWACOM}
|
||||
-tar xf linuxwacom-${LINUXWACOM}.tar.bz2
|
||||
mkdir linuxwacom-${LINUXWACOM}/src/util/asm
|
||||
mkdir linuxwacom-${LINUXWACOM}/src/util/linux
|
||||
mkdir linuxwacom-${LINUXWACOM}/src/xdrv/asm
|
||||
@@ -14,5 +12,5 @@
|
||||
rm -rf linuxwacom-${LINUXWACOM}
|
||||
tar xf linuxwacom-${LINUXWACOM}.tar.bz2
|
||||
@@ -14,5 +14,5 @@
|
||||
cp files/types.h linuxwacom-${LINUXWACOM}/src/xdrv/asm
|
||||
cp files/input.h linuxwacom-${LINUXWACOM}/src/xdrv/linux
|
||||
cd linuxwacom-${LINUXWACOM}
|
||||
-./configure --with-linux=yes --with-tcl=/usr/local/include/tcl8.4 --with-tk=/usr/local/include/tk8.4 --prefix=${PREFIX} --enable-dlloader CFLAGS="-I/usr/local/include"
|
||||
+./configure --with-linux=yes --with-tcl=/usr/local/include/tcl8.4 --with-tk=/usr/local/include/tk8.4 --prefix=${PREFIX} --enable-dlloader CFLAGS="-I/usr/local/include -DWCM_XORG_XSERVER_1_6=true"
|
||||
|
||||
|
|
|
@ -12,6 +12,3 @@ supports the following devices:
|
|||
* not tested
|
||||
|
||||
WWW: http://linuxwacom.sourceforge.net/
|
||||
|
||||
- Kamikaze
|
||||
kamikaze@bsdforen.de
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-input-acecad
|
||||
PORTVERSION= 1.4.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -15,10 +16,4 @@ COMMENT= X.Org acecad input driver
|
|||
XORG_CAT= driver
|
||||
MAN4= acecad.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-acecad driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,21 +7,13 @@
|
|||
|
||||
PORTNAME= xf86-input-citron
|
||||
PORTVERSION= 2.2.2
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
COMMENT= X.Org citron input driver
|
||||
|
||||
BROKEN= does not compile
|
||||
|
||||
XORG_CAT= driver
|
||||
MAN4= citron.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-citron driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -6,22 +6,13 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-input-elographics
|
||||
PORTVERSION= 1.2.3
|
||||
PORTREVISION= 3
|
||||
PORTVERSION= 1.2.4
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
COMMENT= X.Org elographics input driver
|
||||
|
||||
BROKEN= does not compile
|
||||
|
||||
XORG_CAT= driver
|
||||
MAN4= elographics.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-input-elographics-1.2.3.tar.bz2) = cc2923460c8eff9652b01889a063058d
|
||||
SHA256 (xorg/driver/xf86-input-elographics-1.2.3.tar.bz2) = 67550c8f4a85a8029f08880adf487e2efd4585e7adbe8da357fbd49750b08d8f
|
||||
SIZE (xorg/driver/xf86-input-elographics-1.2.3.tar.bz2) = 251743
|
||||
SHA256 (xorg/driver/xf86-input-elographics-1.2.4.tar.bz2) = dfede47c14c40e51294c84bf8f9bec5f5e0b17c80f370ae2ac6bddad79f9e66b
|
||||
SIZE (xorg/driver/xf86-input-elographics-1.2.4.tar.bz2) = 259101
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-elographics driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,23 +7,15 @@
|
|||
|
||||
PORTNAME= xf86-input-fpit
|
||||
PORTVERSION= 1.3.0
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
COMMENT= X.Org fpit input driver
|
||||
|
||||
BROKEN= does not compile
|
||||
|
||||
XORG_CAT= driver
|
||||
USE_XORG= xrandr
|
||||
|
||||
MAN4= fpit.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-fpit driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-input-hyperpen
|
||||
PORTVERSION= 1.3.0
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -15,11 +15,4 @@ COMMENT= X.Org hyperpen input driver
|
|||
|
||||
XORG_CAT= driver
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-hyperpen driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-input-joystick
|
||||
PORTVERSION= 1.5.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -20,12 +21,4 @@ post-patch:
|
|||
@${REINPLACE_CMD} -e 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' \
|
||||
${WRKSRC}/Makefile.in
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-joystick driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-input-keyboard
|
||||
PORTVERSION= 1.4.0
|
||||
PORTVERSION= 1.5.0
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -16,11 +16,5 @@ XORG_CAT= driver
|
|||
USE_XORG= kbproto
|
||||
MAN4= kbd.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-input-keyboard-1.4.0.tar.bz2) = fd17158ffeacecc8cc670604460cb98b
|
||||
SHA256 (xorg/driver/xf86-input-keyboard-1.4.0.tar.bz2) = 842d36cfca68ddab4f2c562c73bfd43ba76de2d490d60034f0c5dd524aa6d6a5
|
||||
SIZE (xorg/driver/xf86-input-keyboard-1.4.0.tar.bz2) = 287234
|
||||
SHA256 (xorg/driver/xf86-input-keyboard-1.5.0.tar.bz2) = 2303510e905465ebee91f22cdd75706a15afb108258bc220c7500f213de19cb0
|
||||
SIZE (xorg/driver/xf86-input-keyboard-1.5.0.tar.bz2) = 301181
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-keyboard driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-input-magictouch
|
||||
PORTVERSION= 1.0.0.5
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
|
|
@ -1,4 +1 @@
|
|||
This package contains the X.Org xf86-input-magictouch driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-input-mouse
|
||||
PORTVERSION= 1.5.0
|
||||
PORTVERSION= 1.6.0
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -15,10 +15,4 @@ COMMENT= X.Org mouse input driver
|
|||
XORG_CAT= driver
|
||||
MAN4= mousedrv.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-input-mouse-1.5.0.tar.bz2) = c58629fddf0782dad5c02da6aeb35521
|
||||
SHA256 (xorg/driver/xf86-input-mouse-1.5.0.tar.bz2) = f303e20872ab2fb20e07a7f734d17723346d2b4b8687ea2086f7a7468d1ab397
|
||||
SIZE (xorg/driver/xf86-input-mouse-1.5.0.tar.bz2) = 308189
|
||||
SHA256 (xorg/driver/xf86-input-mouse-1.6.0.tar.bz2) = c7ae245e5168276346145f196d1d1faed618f41d5174a2031c71fab6e1a2fbdb
|
||||
SIZE (xorg/driver/xf86-input-mouse-1.6.0.tar.bz2) = 316953
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-mouse driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-input-mutouch
|
||||
PORTVERSION= 1.2.1
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -16,10 +16,4 @@ COMMENT= X.Org mutouch input driver
|
|||
XORG_CAT= driver
|
||||
MAN4= mutouch.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
BROKEN= does not compile on 6.X
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-mutouch driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-input-synaptics
|
||||
PORTVERSION= 1.2.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -27,10 +28,4 @@ post-install:
|
|||
${INSTALL_DATA} ${WRKSRC}/fdi/11-x11-synaptics.fdi \
|
||||
${PREFIX}/share/hal/fdi/policy/10osvendor/
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-input-synaptics-1.2.1.tar.bz2) = 29a6f9da5123149e4abc8ff83880ed5c
|
||||
SHA256 (xorg/driver/xf86-input-synaptics-1.2.1.tar.bz2) = a63b48c5c8eb09416b941dea591a948e111d1b2e14d4620f25377cf47cf877e6
|
||||
SIZE (xorg/driver/xf86-input-synaptics-1.2.1.tar.bz2) = 295524
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-synaptics driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-input-vmmouse
|
||||
PORTVERSION= 12.6.9
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -22,10 +23,4 @@ MAN4= vmmouse.4x
|
|||
ONLY_FOR_ARCHS= i386 amd64
|
||||
ONLY_FOR_ARCHS_REASON= The vmmouse protocol is only supported on x86-compatible architectures.
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
This package contains the X.Org xf86-input-vmmouse driver.
|
||||
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-input-void
|
||||
PORTVERSION= 1.3.0
|
||||
PORTVERSION= 1.3.1
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -15,10 +15,4 @@ COMMENT= X.Org void input driver
|
|||
XORG_CAT= driver
|
||||
MAN4= void.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-input-void driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-video-apm
|
||||
PORTVERSION= 1.2.2
|
||||
PORTVERSION= 1.2.3
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -16,10 +16,4 @@ XORG_CAT= driver
|
|||
USE_XORG= videoproto xextproto
|
||||
MAN4= apm.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-video-apm-1.2.2.tar.bz2) = 48441a19aaf015570b267f2a8e67d8ab
|
||||
SHA256 (xorg/driver/xf86-video-apm-1.2.2.tar.bz2) = 678edd063e1d5e7c7f72ccdda2388c5857559847b3d313c94d659f9bd51c1752
|
||||
SIZE (xorg/driver/xf86-video-apm-1.2.2.tar.bz2) = 286085
|
||||
SHA256 (xorg/driver/xf86-video-apm-1.2.3.tar.bz2) = 4046ea18dbd76a9df5f68695025c2c411c20564af9198974506a041ebd4a30da
|
||||
SIZE (xorg/driver/xf86-video-apm-1.2.3.tar.bz2) = 295470
|
||||
|
|
|
@ -1,4 +1 @@
|
|||
This package contains the X.Org xf86-video-apm driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-video-ark
|
||||
PORTVERSION= 0.7.2
|
||||
PORTVERSION= 0.7.3
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -15,10 +15,4 @@ COMMENT= X.Org ark display driver
|
|||
XORG_CAT= driver
|
||||
USE_XORG= xextproto
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-video-ark-0.7.2.tar.bz2) = 4745f5c722b030962cc56eb2443894a0
|
||||
SHA256 (xorg/driver/xf86-video-ark-0.7.2.tar.bz2) = db1ef3e15ebd382837f16c1143035dfd9fa6465a77ae2e850201f71508065741
|
||||
SIZE (xorg/driver/xf86-video-ark-0.7.2.tar.bz2) = 240099
|
||||
SHA256 (xorg/driver/xf86-video-ark-0.7.3.tar.bz2) = 39149a565c64ae013962022c45e561a0e92c5ab413688f3b5055cad694f28f98
|
||||
SIZE (xorg/driver/xf86-video-ark-0.7.3.tar.bz2) = 238946
|
||||
|
|
|
@ -1,4 +1 @@
|
|||
This package contains the X.Org xf86-video-ark driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-video-ati
|
||||
PORTVERSION= 6.13.2
|
||||
PORTVERSION= 6.14.0
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -18,10 +18,4 @@ XORG_CAT= driver
|
|||
USE_XORG= xf86driproto xineramaproto videoproto xf86miscproto xextproto glproto
|
||||
MAN4= ati.4x radeon.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-video-ati-6.13.2.tar.bz2) = a8f92fe3c458e511f4e2ead7f92c02b0
|
||||
SHA256 (xorg/driver/xf86-video-ati-6.13.2.tar.bz2) = d85f60081e5b71bf19da4ca48bce95a9e9df3635c8540dd2640785bedfbc36ee
|
||||
SIZE (xorg/driver/xf86-video-ati-6.13.2.tar.bz2) = 985673
|
||||
SHA256 (xorg/driver/xf86-video-ati-6.14.0.tar.bz2) = 9dcaaf83e883808a49f67fc2af1deec3aa163feaa6ce957c1c028e22b959028b
|
||||
SIZE (xorg/driver/xf86-video-ati-6.14.0.tar.bz2) = 1054336
|
||||
|
|
|
@ -1,4 +1 @@
|
|||
This package contains the X.Org xf86-video-ati driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= xf86-video-ati
|
||||
PORTNAME= xf86-video-ati613
|
||||
PORTVERSION= 6.13.2
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
|
@ -18,10 +18,4 @@ XORG_CAT= driver
|
|||
USE_XORG= xf86driproto xineramaproto videoproto xf86miscproto xextproto glproto
|
||||
MAN4= ati.4x radeon.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-video-chips
|
||||
PORTVERSION= 1.2.2
|
||||
PORTVERSION= 1.2.3
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -16,10 +16,4 @@ XORG_CAT= driver
|
|||
USE_XORG= videoproto xextproto
|
||||
MAN4= chips.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-video-chips-1.2.2.tar.bz2) = a3969c28c3b36ab2caa852a9324e9b70
|
||||
SHA256 (xorg/driver/xf86-video-chips-1.2.2.tar.bz2) = ff6fef2cffc62feb3b23f3fee375e502ab7356d571517a89b4de67f0f6037f0e
|
||||
SIZE (xorg/driver/xf86-video-chips-1.2.2.tar.bz2) = 346931
|
||||
SHA256 (xorg/driver/xf86-video-chips-1.2.3.tar.bz2) = 0561278e06f84d4ee20317b19831cc8d42c952a1577c7865163ad2d6d900cb1d
|
||||
SIZE (xorg/driver/xf86-video-chips-1.2.3.tar.bz2) = 338968
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-video-chips driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-video-cirrus
|
||||
PORTVERSION= 1.3.2
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -16,10 +17,4 @@ XORG_CAT= driver
|
|||
USE_XORG= videoproto xextproto
|
||||
MAN4= cirrus.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,4 +1 @@
|
|||
This package contains the X.Org xf86-video-cirrus driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-video-cyrix
|
||||
PORTVERSION= 1.1.0
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
|
|
@ -1,4 +1 @@
|
|||
This package contains the X.Org xf86-video-cyrix driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-video-dummy
|
||||
PORTVERSION= 0.3.3
|
||||
PORTVERSION= 0.3.4
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -15,10 +15,4 @@ COMMENT= X.Org dummy display driver
|
|||
XORG_CAT= driver
|
||||
USE_XORG= videoproto xf86dgaproto
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-video-dummy-0.3.3.tar.bz2) = 3ffe3a28f4452e66bf56180e7da9cbc5
|
||||
SHA256 (xorg/driver/xf86-video-dummy-0.3.3.tar.bz2) = df3f55de7953dba6d7ce10cc5f355da1a6164f781ad9393a38dae502dba4955d
|
||||
SIZE (xorg/driver/xf86-video-dummy-0.3.3.tar.bz2) = 250155
|
||||
SHA256 (xorg/driver/xf86-video-dummy-0.3.4.tar.bz2) = 7e84dff50eb3a783c0bc718a08f82f1f34583531469c98ca75a815d177871bdc
|
||||
SIZE (xorg/driver/xf86-video-dummy-0.3.4.tar.bz2) = 255658
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-video-dummy driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-video-fbdev
|
||||
PORTVERSION= 0.4.1
|
||||
PORTVERSION= 0.4.2
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -16,10 +16,4 @@ XORG_CAT= driver
|
|||
USE_XORG= videoproto
|
||||
MAN4= fbdev.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-video-fbdev-0.4.1.tar.bz2) = 79ce1eb9f9d2ed56de70d8e06cb767d9
|
||||
SHA256 (xorg/driver/xf86-video-fbdev-0.4.1.tar.bz2) = 2bf857179523433a9cc6c6eea059298db4c865e649aa58dfc67c828f28b7288f
|
||||
SIZE (xorg/driver/xf86-video-fbdev-0.4.1.tar.bz2) = 244592
|
||||
SHA256 (xorg/driver/xf86-video-fbdev-0.4.2.tar.bz2) = 93b271b4b41d7e5ca108849a583b9523e96c51813d046282285355b7001f82d5
|
||||
SIZE (xorg/driver/xf86-video-fbdev-0.4.2.tar.bz2) = 263094
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-video-fbdev driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-video-glint
|
||||
PORTVERSION= 1.2.4
|
||||
PORTVERSION= 1.2.5
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -18,10 +18,4 @@ XORG_CAT= driver
|
|||
USE_XORG= xf86driproto videoproto xextproto xf86dgaproto glproto
|
||||
MAN4= glint.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-video-glint-1.2.4.tar.bz2) = 960df34e129faa411e58c0d6b56d79a3
|
||||
SHA256 (xorg/driver/xf86-video-glint-1.2.4.tar.bz2) = 5f8d6e3b02c261d235bae63d95510b940b6c9a775301146b3c229926ed99d76f
|
||||
SIZE (xorg/driver/xf86-video-glint-1.2.4.tar.bz2) = 353189
|
||||
SHA256 (xorg/driver/xf86-video-glint-1.2.5.tar.bz2) = 5675f2732ab7b099a568ef4e5c7bb0d0e1bb4b0eb4d19133dc1b2225fd9c814b
|
||||
SIZE (xorg/driver/xf86-video-glint-1.2.5.tar.bz2) = 394136
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-video-glint driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xf86-video-i128
|
||||
PORTVERSION= 1.3.3
|
||||
PORTVERSION= 1.3.4
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -16,10 +16,4 @@ XORG_CAT= driver
|
|||
USE_XORG= videoproto xextproto
|
||||
MAN4= i128.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
MD5 (xorg/driver/xf86-video-i128-1.3.3.tar.bz2) = a597e8efeec6ab8bc6ba6d87fceb2dba
|
||||
SHA256 (xorg/driver/xf86-video-i128-1.3.3.tar.bz2) = 4d0691ce8e3b54075d05cc34717350be42915174b3930b2c9b7f5e309b32b02e
|
||||
SIZE (xorg/driver/xf86-video-i128-1.3.3.tar.bz2) = 280135
|
||||
SHA256 (xorg/driver/xf86-video-i128-1.3.4.tar.bz2) = b69b13a7fd69f5ad35119b6f8efb3243bfea05ae9aa5a067d0e754de5d248bcf
|
||||
SIZE (xorg/driver/xf86-video-i128-1.3.4.tar.bz2) = 292046
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
This package contains the X.Org xf86-video-i128 driver.
|
||||
|
||||
- Florent Thoumie
|
||||
flz@FreeBSD.org
|
||||
WWW: http://www.x.org
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= xf86-video-i740
|
||||
PORTVERSION= 1.3.2
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= x11-drivers
|
||||
|
||||
MAINTAINER= x11@FreeBSD.org
|
||||
|
@ -16,10 +17,4 @@ XORG_CAT= driver
|
|||
USE_XORG= videoproto xextproto
|
||||
MAN4= i740.4x
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 700000
|
||||
USE_GCC= 4.2+
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue