diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-17 09:49:03 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-17 09:49:03 +0000 |
commit | c37b6e033cbfcebac78734873335eb1372ed1482 (patch) | |
tree | 12824ab387a50974b67a40fd55c54f9baa992fdd /testing | |
parent | 339f5dfe3a6e80a886b63a2b9830c22c2f1ca027 (diff) | |
download | aports-c37b6e033cbfcebac78734873335eb1372ed1482.tar.bz2 aports-c37b6e033cbfcebac78734873335eb1372ed1482.tar.xz |
main/xf86-video-qxl: moved from testing
Diffstat (limited to 'testing')
-rw-r--r-- | testing/xf86-video-qxl/APKBUILD | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/testing/xf86-video-qxl/APKBUILD b/testing/xf86-video-qxl/APKBUILD deleted file mode 100644 index a9b2e7aabd..0000000000 --- a/testing/xf86-video-qxl/APKBUILD +++ /dev/null @@ -1,46 +0,0 @@ -# Contributor: Carlo Landmeter <clandmeter@gmail.com> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=xf86-video-qxl -pkgver=0.1.0 -pkgrel=2 -pkgdesc="Xorg X11 qxl video driver" -url="http://www.x.org" -arch="all" -license="MIT" -depends= -makedepends="xorg-server-dev spice-dev xorg-server xproto fontsproto - randrproto renderproto videoproto xf86dgaproto" -install="" -subpackages="$pkgname-doc" -source="http://xorg.freedesktop.org/releases/individual/driver/xf86-video-qxl-$pkgver.tar.bz2" - -_builddir="$srcdir"/xf86-video-qxl-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - -build() { - cd "$_builddir" - export LDFLAGS="$LDFLAGS -Wl,-z,lazy" - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --localstatedir=/var \ - || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 - rm "$pkgdir"/usr/lib/xorg/modules/*/*.la -} - -md5sums="3d854268744ff92751430d83b8acaeb6 xf86-video-qxl-0.1.0.tar.bz2" |