mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-08 18:22:30 +01:00
204 lines
5.5 KiB
Plaintext
204 lines
5.5 KiB
Plaintext
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=xorg-server
|
|
pkgver=1.18.4
|
|
pkgrel=3
|
|
pkgdesc="X.Org X servers"
|
|
url="http://xorg.freedesktop.org"
|
|
arch="all"
|
|
license="MIT"
|
|
options="suid"
|
|
subpackages="$pkgname-dbg $pkgname-dev $pkgname-doc xfbdev xvfb $pkgname-xephyr
|
|
$pkgname-xnest $pkgname-xwayland"
|
|
# the modesetting driver is now shipped with xorg server
|
|
replaces="xf86-video-modesetting"
|
|
depends="
|
|
font-misc-misc
|
|
font-cursor-misc
|
|
xkeyboard-config
|
|
xkbcomp
|
|
xinit
|
|
"
|
|
depends_dev="
|
|
bigreqsproto
|
|
compositeproto
|
|
damageproto
|
|
dri2proto
|
|
fixesproto
|
|
fontsproto
|
|
glproto
|
|
inputproto
|
|
kbproto
|
|
libepoxy-dev
|
|
libpciaccess-dev
|
|
libxfont-dev
|
|
mesa-dev
|
|
pixman-dev
|
|
presentproto
|
|
randrproto
|
|
recordproto
|
|
renderproto
|
|
resourceproto
|
|
scrnsaverproto
|
|
videoproto
|
|
xcmiscproto
|
|
xextproto
|
|
xf86driproto
|
|
xineramaproto
|
|
xproto
|
|
"
|
|
makedepends="
|
|
$depends_dev
|
|
autoconf
|
|
automake
|
|
libdrm-dev
|
|
libtool
|
|
libx11-dev
|
|
libxdamage-dev
|
|
libxinerama-dev
|
|
libxkbfile-dev
|
|
libxkbui-dev
|
|
libxv-dev
|
|
libxxf86dga-dev
|
|
libxxf86misc-dev
|
|
libressl-dev
|
|
perl
|
|
eudev-dev
|
|
util-macros
|
|
xtrans
|
|
xcb-util-dev
|
|
xcb-util-image-dev
|
|
xcb-util-keysyms-dev
|
|
xcb-util-renderutil-dev
|
|
xcb-util-wm-dev
|
|
zlib-dev
|
|
"
|
|
|
|
source="http://xorg.freedesktop.org/releases/individual/xserver/$pkgname-$pkgver.tar.bz2
|
|
autoconfig-nvidia.patch
|
|
autoconfig-sis.patch
|
|
fix-musl-arm.patch
|
|
20-modules.conf
|
|
"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
default_prepare
|
|
|
|
# Fix dbus config path
|
|
sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
|
|
sed -i -e 's/termio.h/termios.h/' hw/xfree86/os-support/xf86_OSlib.h || return 1
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
# xorg modules does not work with the -z now and it seems like we
|
|
# cannot pass over the linker flag to .so files. so we tweak the
|
|
# gcc specs.
|
|
export CFLAGS="$CFLAGS -D_GNU_SOURCE"
|
|
[ "$CLIBC" == musl ] && export CFLAGS="$CFLAGS -D__gid_t=gid_t -D__uid_t=uid_t"
|
|
export LDFLAGS="$LDFLAGS -Wl,-z,lazy"
|
|
_fontroot="/usr/share/fonts"
|
|
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc/X11 \
|
|
--localstatedir=/var \
|
|
--with-fontrootdir=$_fontroot \
|
|
--with-default-font-path=${_fontroot}/misc,${_fontroot}/100dpi:unscaled,${_fontroot}/75dpi:unscaled,${_fontroot}/TTF,${_fontroot}/Type1 \
|
|
--with-xkb-path=/usr/share/X11/xkb \
|
|
--with-xkb-output=/var/lib/xkb \
|
|
--without-systemd-daemon \
|
|
--enable-aiglx \
|
|
--enable-composite \
|
|
--enable-config-udev \
|
|
--enable-dri \
|
|
--enable-dri2 \
|
|
--enable-glamor \
|
|
--enable-glx-tls \
|
|
--enable-ipv6 \
|
|
--enable-kdrive \
|
|
--enable-xace \
|
|
--enable-xephyr \
|
|
--enable-xfbdev \
|
|
--enable-xnest \
|
|
--enable-xorg \
|
|
--enable-xres \
|
|
--enable-xv \
|
|
--enable-xwayland \
|
|
--disable-config-hal \
|
|
--disable-dmx \
|
|
--disable-tslib \
|
|
--disable-systemd-logind \
|
|
|| return 1
|
|
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make -j1 DESTDIR="$pkgdir" install || return 1
|
|
chmod u+s "$pkgdir"/usr/bin/Xorg
|
|
|
|
# Don't conflict with xf86-input-evdev
|
|
rm -f "$pkgdir"/usr/share/X11/xorg.conf.d/10-evdev.conf || return 1
|
|
|
|
install -m755 -d "$pkgdir"/etc/X11/xorg.conf.d || return 1
|
|
install -m644 "$srcdir"/20-modules.conf "$pkgdir"/etc/X11/xorg.conf.d/ \
|
|
|| return 1
|
|
install -m755 -d "$pkgdir"/var/lib/xkb || return 1
|
|
install -m644 -D COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
xfbdev() {
|
|
pkgdesc="X.org server for framebuffer"
|
|
depends=
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/Xfbdev "$subpkgdir"/usr/bin/
|
|
}
|
|
|
|
xvfb() {
|
|
pkgdesc="Virtual Framebuffer 'fake' X server"
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/Xvfb "$subpkgdir"/usr/bin/
|
|
}
|
|
|
|
xephyr() {
|
|
pkgdesc="kdrive based X Server which targets a window on a host X Server as its framebuffer"
|
|
depends=
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/Xephyr "$subpkgdir"/usr/bin/
|
|
}
|
|
|
|
xnest() {
|
|
pkgdesc="A nested Xorg server"
|
|
depends=
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/Xnest "$subpkgdir"/usr/bin/
|
|
}
|
|
|
|
xwayland() {
|
|
pkgdesc="run X clients under wayland"
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/Xwayland "$subpkgdir"/usr/bin/
|
|
}
|
|
|
|
md5sums="d4842dfe3bd9a9d062f2fa1df9104a46 xorg-server-1.18.4.tar.bz2
|
|
ea4852dedbb89550f6bc113ca66348a2 autoconfig-nvidia.patch
|
|
825ca99ea9348c66abdf2c479e0af485 autoconfig-sis.patch
|
|
043cbe8fc14729ae1e776788ae7593bf fix-musl-arm.patch
|
|
553002a472140a9b4c843e81d3e78e2e 20-modules.conf"
|
|
sha256sums="278459b2c31d61a15655d95a72fb79930c480a6bb8cf9226e48a07df8b1d31c8 xorg-server-1.18.4.tar.bz2
|
|
66e25f76a7496c429e0aff4b0670f168719bb0ceaeb88c6f2272f2bf3ed21162 autoconfig-nvidia.patch
|
|
7d5d36dd152eb0fab277a4aeba0a08ad77049e591a0dea92f565a4b62f0d0a50 autoconfig-sis.patch
|
|
b210a93b4d6128c0963ade3458925ff293e1c68ac20a15964357fd401f7161e0 fix-musl-arm.patch
|
|
adf3febb1e635de168ff385a716448063a472e9e224989a99b4c2a2500710f6f 20-modules.conf"
|
|
sha512sums="2055948caa1437547ea823a70d8b24584b65338bb9f1bbf75e3ad7fd60ec9684378facaffa05b7ce496d904213cd192085a43ba889a1476d5fbc813b7e41b56b xorg-server-1.18.4.tar.bz2
|
|
4dcaa60fbfc61636e7220a24a72bba19984a6dc752061cb40b1bd566c0e614d08927b6c223ffaaaa05636765fddacdc3113fde55d25fd09cd0c786ff44f51447 autoconfig-nvidia.patch
|
|
30a78f4278edd535c45ee3f80933427cb029a13abaa4b041f816515fdd8f64f00b9c6aef50d4eba2aaf0d4f333e730399864fd97fa18891273601c77a6637200 autoconfig-sis.patch
|
|
b799e757a22a61ac283adbd7a8df1ad4eccce0bb6cac38a0c962ba8438bba3cf6637a65bb64859e7b32399fca672283a49960207e186c271ba574580de360d09 fix-musl-arm.patch
|
|
95036f2452732cc31f6b646da9f46b7be30f4c9392724386b02f67fece1f506b00e15d14cbd8cf0ce75ca1fd144b4bea7e59288d4aaf4d6c1e06e5168931eb67 20-modules.conf"
|