mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-13 23:14:16 +02:00
54 lines
1.2 KiB
Text
54 lines
1.2 KiB
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libx11
|
|
pkgver=1.8.11
|
|
pkgrel=0
|
|
pkgdesc="X11 client-side library"
|
|
url="https://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="X11"
|
|
subpackages="$pkgname-static $pkgname-dev $pkgname-doc"
|
|
depends_dev="libxcb-dev xtrans"
|
|
makedepends="$depends_dev xorgproto util-macros xmlto"
|
|
source="https://www.x.org/releases/individual/lib/libX11-$pkgver.tar.xz"
|
|
builddir="$srcdir"/libX11-$pkgver
|
|
|
|
# secfixes:
|
|
# 1.8.7-r0:
|
|
# - CVE-2023-43785
|
|
# - CVE-2023-43786
|
|
# - CVE-2023-43787
|
|
# 1.7.1-r0:
|
|
# - CVE-2021-31535
|
|
# 1.6.12-r0:
|
|
# - CVE-2020-14363
|
|
# 1.6.10-r0:
|
|
# - CVE-2020-14344
|
|
# 1.6.6-r0:
|
|
# - CVE-2018-14598
|
|
# - CVE-2018-14599
|
|
# - CVE-2018-14600
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--disable-xf86bigfont
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
sha512sums="
|
|
4e2191258039ad0ea7fe5d22b8b0ab5e1d101b20fa4cd0fb44c5e1ac8b2ffbb3a0ad80ac3a67a3803ca30b972476b739a0c244b2ac8b7de6a32b06dc4e2c674b libX11-1.8.11.tar.xz
|
|
"
|