From 12fb9608ca0d7e1478f57863518a56e57fc759bc Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 24 May 2013 08:32:13 +0000 Subject: main/libxcursor: fix CVE-2013-2003 ref #1931 --- main/libxcursor/APKBUILD | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) (limited to 'main/libxcursor/APKBUILD') diff --git a/main/libxcursor/APKBUILD b/main/libxcursor/APKBUILD index cc57d8980..e769d4831 100644 --- a/main/libxcursor/APKBUILD +++ b/main/libxcursor/APKBUILD @@ -1,19 +1,30 @@ # Maintainer: Natanael Copa pkgname=libxcursor pkgver=1.1.13 -pkgrel=0 +pkgrel=1 pkgdesc="X cursor management library" url="http://xorg.freedesktop.org/" arch="all" license="custom" subpackages="$pkgname-dev $pkgname-doc" depends= -makedepends="pkgconfig libxfixes-dev libx11-dev libxrender-dev" -source="http://xorg.freedesktop.org/releases/individual/lib/libXcursor-$pkgver.tar.bz2" - depends_dev="xproto libx11-dev libxrender-dev libxfixes-dev" +makedepends="$depends_dev" +source="http://xorg.freedesktop.org/releases/individual/lib/libXcursor-$pkgver.tar.bz2 + CVE-2013-2003.patch" + +_builddir="$srcdir"/libXcursor-$pkgver +prepare() { + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + build() { - cd "$srcdir"/libXcursor-$pkgver + cd "$_builddir" ./configure --prefix=/usr \ --sysconfdir=/etc \ || return 1 @@ -21,8 +32,13 @@ build() { } package() { - cd "$srcdir"/libXcursor-$pkgver + cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 rm "$pkgdir"/usr/lib/*.la || return 1 } -md5sums="52efa81b7f26c8eda13510a2fba98eea libXcursor-1.1.13.tar.bz2" +md5sums="52efa81b7f26c8eda13510a2fba98eea libXcursor-1.1.13.tar.bz2 +e604d93c5dfcc22078129959acc9a6d5 CVE-2013-2003.patch" +sha256sums="f78827de4a1b7ce8cceca24a9ab9d1b1d2f6a61362f505166ffc19b07c0bad8f libXcursor-1.1.13.tar.bz2 +9d7d03d476f92b3527daa825c7d7986f3048ced65cf548ab2667b3834b3560c8 CVE-2013-2003.patch" +sha512sums="81e9523c8181341b6607a97e493f065ac094638479a6094360d1adbccd637c9c7397c28b700e2abd568f42f4ba43a62153186371f6706b06959980b435bb45cc libXcursor-1.1.13.tar.bz2 +c471d5a3823d8206ee2dfe27482ed83559444a989aeeee49b67bf0d77c6a6dd6fb74d2708766b41c3e28cc89249c6ba5c41454aac2df3aeb57d2c1cc706effa0 CVE-2013-2003.patch" -- cgit v1.2.3