[arch-commits] Commit in xf86-video-s3/repos (6 files)

2016-11-21 Thread Laurent Carlier
Date: Monday, November 21, 2016 @ 14:22:42
  Author: lcarlier
Revision: 281746

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xf86-video-s3/repos/staging-i686/
  xf86-video-s3/repos/staging-i686/PKGBUILD
(from rev 281745, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-i686/git-fixes.patch
(from rev 281745, xf86-video-s3/trunk/git-fixes.patch)
  xf86-video-s3/repos/staging-x86_64/
  xf86-video-s3/repos/staging-x86_64/PKGBUILD
(from rev 281745, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-x86_64/git-fixes.patch
(from rev 281745, xf86-video-s3/trunk/git-fixes.patch)

+
 staging-i686/PKGBUILD  |   35 ++
 staging-i686/git-fixes.patch   |  204 +++
 staging-x86_64/PKGBUILD|   35 ++
 staging-x86_64/git-fixes.patch |  204 +++
 4 files changed, 478 insertions(+)

Copied: xf86-video-s3/repos/staging-i686/PKGBUILD (from rev 281745, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-11-21 14:22:42 UTC (rev 281746)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=8
+pkgdesc="X.org S3 video driver"
+arch=(i686 x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=23')
+conflicts=('xorg-server<1.19' 'X-ABI-VIDEODRV_VERSION<23' 
'X-ABI-VIDEODRV_VERSION>=24')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
git-fixes.patch)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'c8150b49c9d84f5a418d89fedc2b7eebf1066a046d9877a5ca21bc2868dc4765')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../git-fixes.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xf86-video-s3/repos/staging-i686/git-fixes.patch (from rev 281745, 
xf86-video-s3/trunk/git-fixes.patch)
===
--- staging-i686/git-fixes.patch(rev 0)
+++ staging-i686/git-fixes.patch2016-11-21 14:22:42 UTC (rev 281746)
@@ -0,0 +1,204 @@
+From 92d10d5d6882c3db6695a8fff83c88fbaaa27a33 Mon Sep 17 00:00:00 2001
+From: "Eric S. Raymond" 
+Date: Thu, 23 Aug 2012 12:46:03 -0400
+Subject: [PATCH 1/4] Fix malformed list syntax.
+
+TP without a body shouldn't really be used for an item list. Fixing this
+makes structural translation to DocBook possible.
+
+Signed-off-by: Eric S. Raymond 
+---
+ man/s3.man | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/man/s3.man b/man/s3.man
+index 9109c2a..732e4f3 100644
+--- a/man/s3.man
 b/man/s3.man
+@@ -50,9 +50,9 @@ driver supports PCI video cards based on the following S3 
chips:
+ 
+ .PP
+ Also driver supports the following RAMDACs:
+-.TP 12
++.IP 12
+ .B IBM 524, IBM 524A, IBM 526, IBM 526DB
+-.TP 12
++.IP 12
+ .B TI ViewPoint 3025 
+ 
+ .SH DESCRIPTION
+-- 
+2.10.2
+
+
+From ed0fbfd27609e897c42d7ab316481a9504746233 Mon Sep 17 00:00:00 2001
+From: Gaetan Nadon 
+Date: Tue, 7 Jan 2014 16:28:58 -0500
+Subject: [PATCH 2/4] Remove mibstore.h
+
+As it was done in numerous other drivers. Fixes compile error.
+
+Tested-by: Trevor Woerner 
+Signed-off-by: Gaetan Nadon 
+---
+ src/s3_driver.c | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/src/s3_driver.c b/src/s3_driver.c
+index 61242ad..85763ba 100644
+--- a/src/s3_driver.c
 b/src/s3_driver.c
+@@ -52,7 +52,6 @@
+ #include "compiler.h"
+ #include "mipointer.h"
+ #include "micmap.h"
+-#include "mibstore.h"
+ #include "fb.h"
+ #include "inputstr.h"
+ #include "shadowfb.h"
+@@ -822,7 +821,6 @@ static Bool S3ScreenInit(SCREEN_INIT_ARGS_DECL)
+   fbPictureInit (pScreen, 0, 0);
+   S3DGAInit(pScreen);
+ 
+-miInitializeBackingStore(pScreen);
+ xf86SetBackingStore(pScreen);
+ 
+   /* framebuffer manager setup */
+-- 
+2.10.2
+
+
+From 7b454358082fc07985878fc92b902d7534144cae Mon Sep 17 00:00:00 2001
+From: Alan Coopersmith 
+Date: Sat, 12 Mar 2016 10:54:22 -0800
+Subject: [PATCH 3/4] When checking malloc for success, it helps to use ==
+ NULL, instead of =
+
+Fixes gcc 5.3 compiler warning:
+s3_bios.c: In function 'find_bios_string':
+s3_bios.c:49:2: warning: suggest parentheses around assignment used as
+truth value [-Wparentheses]
+  if (bios = NULL)
+^
+
+[Tested by 

[arch-commits] Commit in xf86-video-s3/repos (6 files)

2015-11-11 Thread Andreas Radke
Date: Wednesday, November 11, 2015 @ 10:33:44
  Author: andyrtr
Revision: 250712

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xf86-video-s3/repos/staging-i686/
  xf86-video-s3/repos/staging-i686/PKGBUILD
(from rev 250711, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-i686/build-fix.diff
(from rev 250711, xf86-video-s3/trunk/build-fix.diff)
  xf86-video-s3/repos/staging-x86_64/
  xf86-video-s3/repos/staging-x86_64/PKGBUILD
(from rev 250711, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-x86_64/build-fix.diff
(from rev 250711, xf86-video-s3/trunk/build-fix.diff)

---+
 staging-i686/PKGBUILD |   35 +++
 staging-i686/build-fix.diff   |   10 ++
 staging-x86_64/PKGBUILD   |   35 +++
 staging-x86_64/build-fix.diff |   10 ++
 4 files changed, 90 insertions(+)

Copied: xf86-video-s3/repos/staging-i686/PKGBUILD (from rev 250711, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-11-11 09:33:44 UTC (rev 250712)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=7
+pkgdesc="X.org S3 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xf86-video-s3/repos/staging-i686/build-fix.diff (from rev 250711, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-i686/build-fix.diff (rev 0)
+++ staging-i686/build-fix.diff 2015-11-11 09:33:44 UTC (rev 250712)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include "compiler.h"
+ #include "mipointer.h"
+ #include "micmap.h"
+-#include "mibstore.h"
+ #include "fb.h"
+ #include "inputstr.h"
+ #include "shadowfb.h"

Copied: xf86-video-s3/repos/staging-x86_64/PKGBUILD (from rev 250711, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-11-11 09:33:44 UTC (rev 250712)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=7
+pkgdesc="X.org S3 video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xf86-video-s3/repos/staging-x86_64/build-fix.diff (from rev 250711, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-x86_64/build-fix.diff   (rev 0)
+++ staging-x86_64/build-fix.diff   2015-11-11 09:33:44 UTC (rev 250712)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include "compiler.h"
+ #include "mipointer.h"
+ #include "micmap.h"
+-#include "mibstore.h"
+ #include "fb.h"
+ #include "inputstr.h"
+ #include 

[arch-commits] Commit in xf86-video-s3/repos (6 files)

2015-02-05 Thread Laurent Carlier
Date: Thursday, February 5, 2015 @ 21:09:31
  Author: lcarlier
Revision: 230829

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xf86-video-s3/repos/staging-i686/
  xf86-video-s3/repos/staging-i686/PKGBUILD
(from rev 230828, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-i686/build-fix.diff
(from rev 230828, xf86-video-s3/trunk/build-fix.diff)
  xf86-video-s3/repos/staging-x86_64/
  xf86-video-s3/repos/staging-x86_64/PKGBUILD
(from rev 230828, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-x86_64/build-fix.diff
(from rev 230828, xf86-video-s3/trunk/build-fix.diff)

---+
 staging-i686/PKGBUILD |   35 +++
 staging-i686/build-fix.diff   |   10 ++
 staging-x86_64/PKGBUILD   |   35 +++
 staging-x86_64/build-fix.diff |   10 ++
 4 files changed, 90 insertions(+)

Copied: xf86-video-s3/repos/staging-i686/PKGBUILD (from rev 230828, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-02-05 20:09:31 UTC (rev 230829)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=6
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-s3/repos/staging-i686/build-fix.diff (from rev 230828, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-i686/build-fix.diff (rev 0)
+++ staging-i686/build-fix.diff 2015-02-05 20:09:31 UTC (rev 230829)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include compiler.h
+ #include mipointer.h
+ #include micmap.h
+-#include mibstore.h
+ #include fb.h
+ #include inputstr.h
+ #include shadowfb.h

Copied: xf86-video-s3/repos/staging-x86_64/PKGBUILD (from rev 230828, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-02-05 20:09:31 UTC (rev 230829)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=6
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-s3/repos/staging-x86_64/build-fix.diff (from rev 230828, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-x86_64/build-fix.diff   (rev 0)
+++ staging-x86_64/build-fix.diff   2015-02-05 20:09:31 UTC (rev 230829)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include compiler.h
+ #include mipointer.h
+ #include micmap.h
+-#include mibstore.h
+ #include fb.h
+ #include inputstr.h
+ #include shadowfb.h


[arch-commits] Commit in xf86-video-s3/repos (6 files)

2014-07-18 Thread Laurent Carlier
Date: Friday, July 18, 2014 @ 13:32:55
  Author: lcarlier
Revision: 217137

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xf86-video-s3/repos/staging-i686/
  xf86-video-s3/repos/staging-i686/PKGBUILD
(from rev 217135, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-i686/build-fix.diff
(from rev 217135, xf86-video-s3/trunk/build-fix.diff)
  xf86-video-s3/repos/staging-x86_64/
  xf86-video-s3/repos/staging-x86_64/PKGBUILD
(from rev 217135, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-x86_64/build-fix.diff
(from rev 217135, xf86-video-s3/trunk/build-fix.diff)

---+
 staging-i686/PKGBUILD |   35 +++
 staging-i686/build-fix.diff   |   10 ++
 staging-x86_64/PKGBUILD   |   35 +++
 staging-x86_64/build-fix.diff |   10 ++
 4 files changed, 90 insertions(+)

Copied: xf86-video-s3/repos/staging-i686/PKGBUILD (from rev 217135, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-07-18 11:32:55 UTC (rev 217137)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=5
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-s3/repos/staging-i686/build-fix.diff (from rev 217135, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-i686/build-fix.diff (rev 0)
+++ staging-i686/build-fix.diff 2014-07-18 11:32:55 UTC (rev 217137)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include compiler.h
+ #include mipointer.h
+ #include micmap.h
+-#include mibstore.h
+ #include fb.h
+ #include inputstr.h
+ #include shadowfb.h

Copied: xf86-video-s3/repos/staging-x86_64/PKGBUILD (from rev 217135, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-07-18 11:32:55 UTC (rev 217137)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=5
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-s3/repos/staging-x86_64/build-fix.diff (from rev 217135, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-x86_64/build-fix.diff   (rev 0)
+++ staging-x86_64/build-fix.diff   2014-07-18 11:32:55 UTC (rev 217137)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include compiler.h
+ #include mipointer.h
+ #include micmap.h
+-#include mibstore.h
+ #include fb.h
+ #include inputstr.h
+ #include shadowfb.h



[arch-commits] Commit in xf86-video-s3/repos (6 files)

2013-12-28 Thread Andreas Radke
Date: Saturday, December 28, 2013 @ 19:30:19
  Author: andyrtr
Revision: 202865

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xf86-video-s3/repos/staging-i686/
  xf86-video-s3/repos/staging-i686/PKGBUILD
(from rev 202864, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-i686/build-fix.diff
(from rev 202864, xf86-video-s3/trunk/build-fix.diff)
  xf86-video-s3/repos/staging-x86_64/
  xf86-video-s3/repos/staging-x86_64/PKGBUILD
(from rev 202864, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-x86_64/build-fix.diff
(from rev 202864, xf86-video-s3/trunk/build-fix.diff)

---+
 staging-i686/PKGBUILD |   31 +++
 staging-i686/build-fix.diff   |   10 ++
 staging-x86_64/PKGBUILD   |   31 +++
 staging-x86_64/build-fix.diff |   10 ++
 4 files changed, 82 insertions(+)

Copied: xf86-video-s3/repos/staging-i686/PKGBUILD (from rev 202864, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-12-28 18:30:19 UTC (rev 202865)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=4
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=15')
+conflicts=('xorg-server1.15.0' 'X-ABI-VIDEODRV_VERSION15' 
'X-ABI-VIDEODRV_VERSION=16')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-s3/repos/staging-i686/build-fix.diff (from rev 202864, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-i686/build-fix.diff (rev 0)
+++ staging-i686/build-fix.diff 2013-12-28 18:30:19 UTC (rev 202865)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include compiler.h
+ #include mipointer.h
+ #include micmap.h
+-#include mibstore.h
+ #include fb.h
+ #include inputstr.h
+ #include shadowfb.h

Copied: xf86-video-s3/repos/staging-x86_64/PKGBUILD (from rev 202864, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-12-28 18:30:19 UTC (rev 202865)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=4
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=15')
+conflicts=('xorg-server1.15.0' 'X-ABI-VIDEODRV_VERSION15' 
'X-ABI-VIDEODRV_VERSION=16')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-s3/repos/staging-x86_64/build-fix.diff (from rev 202864, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-x86_64/build-fix.diff   (rev 0)
+++ staging-x86_64/build-fix.diff   2013-12-28 18:30:19 UTC (rev 202865)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include compiler.h
+ #include mipointer.h
+ #include micmap.h
+-#include mibstore.h
+ #include fb.h
+ #include inputstr.h
+ #include shadowfb.h



[arch-commits] Commit in xf86-video-s3/repos (6 files)

2013-03-09 Thread Andreas Radke
Date: Saturday, March 9, 2013 @ 17:05:33
  Author: andyrtr
Revision: 179743

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  xf86-video-s3/repos/staging-i686/
  xf86-video-s3/repos/staging-i686/PKGBUILD
(from rev 179742, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-i686/build-fix.diff
(from rev 179742, xf86-video-s3/trunk/build-fix.diff)
  xf86-video-s3/repos/staging-x86_64/
  xf86-video-s3/repos/staging-x86_64/PKGBUILD
(from rev 179742, xf86-video-s3/trunk/PKGBUILD)
  xf86-video-s3/repos/staging-x86_64/build-fix.diff
(from rev 179742, xf86-video-s3/trunk/build-fix.diff)

---+
 staging-i686/PKGBUILD |   32 
 staging-i686/build-fix.diff   |   10 ++
 staging-x86_64/PKGBUILD   |   32 
 staging-x86_64/build-fix.diff |   10 ++
 4 files changed, 84 insertions(+)

Copied: xf86-video-s3/repos/staging-i686/PKGBUILD (from rev 179742, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-03-09 16:05:33 UTC (rev 179743)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=3
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-s3/repos/staging-i686/build-fix.diff (from rev 179742, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-i686/build-fix.diff (rev 0)
+++ staging-i686/build-fix.diff 2013-03-09 16:05:33 UTC (rev 179743)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include compiler.h
+ #include mipointer.h
+ #include micmap.h
+-#include mibstore.h
+ #include fb.h
+ #include inputstr.h
+ #include shadowfb.h

Copied: xf86-video-s3/repos/staging-x86_64/PKGBUILD (from rev 179742, 
xf86-video-s3/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-03-09 16:05:33 UTC (rev 179743)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=3
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
build-fix.diff)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39'
+'ad5ce4569c16f28801f4f89d8271fccc5706ef8508a6051ca094854d92a19d1a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/build-fix.diff
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-s3/repos/staging-x86_64/build-fix.diff (from rev 179742, 
xf86-video-s3/trunk/build-fix.diff)
===
--- staging-x86_64/build-fix.diff   (rev 0)
+++ staging-x86_64/build-fix.diff   2013-03-09 16:05:33 UTC (rev 179743)
@@ -0,0 +1,10 @@
+--- xf86-video-s3-0.6.5/src/s3_driver.c2012-07-17 06:50:05.0 
+0200
 xf86-video-s3-0.6.5/src/s3_driver.c.new2013-03-09 17:01:39.639220318 
+0100
+@@ -52,7 +52,6 @@
+ #include compiler.h
+ #include mipointer.h
+ #include micmap.h
+-#include mibstore.h
+ #include fb.h
+ #include inputstr.h
+ #include 

[arch-commits] Commit in xf86-video-s3/repos (6 files)

2012-10-13 Thread andyrtr
Date: Saturday, October 13, 2012 @ 07:45:35
  Author: andyrtr
Revision: 168584

db-move: moved xf86-video-s3 from [testing] to [extra] (i686, x86_64)

Added:
  xf86-video-s3/repos/extra-i686/PKGBUILD
(from rev 168549, xf86-video-s3/repos/testing-i686/PKGBUILD)
  xf86-video-s3/repos/extra-x86_64/PKGBUILD
(from rev 168549, xf86-video-s3/repos/testing-x86_64/PKGBUILD)
Deleted:
  xf86-video-s3/repos/extra-i686/PKGBUILD
  xf86-video-s3/repos/extra-x86_64/PKGBUILD
  xf86-video-s3/repos/testing-i686/
  xf86-video-s3/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   61 +++-
 extra-x86_64/PKGBUILD |   61 +++-
 2 files changed, 60 insertions(+), 62 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-13 11:45:31 UTC (rev 168583)
+++ extra-i686/PKGBUILD 2012-10-13 11:45:35 UTC (rev 168584)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-s3
-pkgver=0.6.5
-pkgrel=1
-pkgdesc=X.org S3 video driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel=1.12.0')
-conflicts=('xorg-server1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-s3/repos/extra-i686/PKGBUILD (from rev 168549, 
xf86-video-s3/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-13 11:45:35 UTC (rev 168584)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=2
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-13 11:45:31 UTC (rev 168583)
+++ extra-x86_64/PKGBUILD   2012-10-13 11:45:35 UTC (rev 168584)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-s3
-pkgver=0.6.5
-pkgrel=1
-pkgdesc=X.org S3 video driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel=1.12.0')
-conflicts=('xorg-server1.12.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-s3/repos/extra-x86_64/PKGBUILD (from rev 168549, 
xf86-video-s3/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-10-13 11:45:35 UTC (rev 168584)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=2
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)

[arch-commits] Commit in xf86-video-s3/repos (6 files)

2012-10-06 Thread andyrtr
Date: Saturday, October 6, 2012 @ 16:08:02
  Author: andyrtr
Revision: 168236

db-move: moved xf86-video-s3 from [staging] to [testing] (i686, x86_64)

Added:
  xf86-video-s3/repos/testing-i686/
  xf86-video-s3/repos/testing-i686/PKGBUILD
(from rev 168199, xf86-video-s3/repos/staging-i686/PKGBUILD)
  xf86-video-s3/repos/testing-x86_64/
  xf86-video-s3/repos/testing-x86_64/PKGBUILD
(from rev 168199, xf86-video-s3/repos/staging-x86_64/PKGBUILD)
Deleted:
  xf86-video-s3/repos/staging-i686/
  xf86-video-s3/repos/staging-x86_64/

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: xf86-video-s3/repos/testing-i686/PKGBUILD (from rev 168199, 
xf86-video-s3/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-06 20:08:02 UTC (rev 168236)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=2
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-s3/repos/testing-x86_64/PKGBUILD (from rev 168199, 
xf86-video-s3/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-10-06 20:08:02 UTC (rev 168236)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-s3
+pkgver=0.6.5
+pkgrel=2
+pkgdesc=X.org S3 video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=13' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.13.0' 'X-ABI-VIDEODRV_VERSION13' 
'X-ABI-VIDEODRV_VERSION=14')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('4778cd4f1d61490c3562f9be03664576f065fa3acf22fe0d0689212d7ea3ad39')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}



[arch-commits] Commit in xf86-video-s3/repos (6 files)

2011-10-11 Thread Jan de Groot
Date: Tuesday, October 11, 2011 @ 17:28:44
  Author: jgc
Revision: 140307

db-move: moved xf86-video-s3 from [testing] to [extra] (i686)

Added:
  xf86-video-s3/repos/extra-i686/LICENSE
(from rev 140271, xf86-video-s3/repos/testing-i686/LICENSE)
  xf86-video-s3/repos/extra-i686/PKGBUILD
(from rev 140271, xf86-video-s3/repos/testing-i686/PKGBUILD)
  xf86-video-s3/repos/extra-i686/git-fixes.patch
(from rev 140271, xf86-video-s3/repos/testing-i686/git-fixes.patch)
Deleted:
  xf86-video-s3/repos/extra-i686/LICENSE
  xf86-video-s3/repos/extra-i686/PKGBUILD
  xf86-video-s3/repos/testing-i686/

-+
 LICENSE |   50 ++---
 PKGBUILD|   60 +++
 git-fixes.patch |  458 ++
 3 files changed, 514 insertions(+), 54 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2011-10-11 21:28:43 UTC (rev 140306)
+++ extra-i686/LICENSE  2011-10-11 21:28:44 UTC (rev 140307)
@@ -1,25 +0,0 @@
-This package was downloaded from
-http://xorg.freedesktop.org/releases/individual/driver/
-
- Copyright 2001  Ani Joshi ajo...@unixbox.com
-
- XFree86 4.x driver for S3 chipsets
-
-
-Permission to use, copy, modify, distribute, and sell this software and its
-documentation for any purpose is hereby granted without fee, provided that
-the above copyright notice appear in all copies and that both that copyright
-notice and this permission notice appear in supporting documentation and
-that the name of Ani Joshi not be used in advertising or
-publicity pertaining to distribution of the software without specific,
-written prior permission.  Ani Joshi makes no representations
-about the suitability of this software for any purpose.  It is provided
-as-is without express or implied warranty.
-
-ANI JOSHI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
-INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
-EVENT SHALL ANI JOSHI BE LIABLE FOR ANY SPECIAL, INDIRECT OR
-CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
-DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.

Copied: xf86-video-s3/repos/extra-i686/LICENSE (from rev 140271, 
xf86-video-s3/repos/testing-i686/LICENSE)
===
--- extra-i686/LICENSE  (rev 0)
+++ extra-i686/LICENSE  2011-10-11 21:28:44 UTC (rev 140307)
@@ -0,0 +1,25 @@
+This package was downloaded from
+http://xorg.freedesktop.org/releases/individual/driver/
+
+ Copyright 2001  Ani Joshi ajo...@unixbox.com
+
+ XFree86 4.x driver for S3 chipsets
+
+
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that
+the above copyright notice appear in all copies and that both that copyright
+notice and this permission notice appear in supporting documentation and
+that the name of Ani Joshi not be used in advertising or
+publicity pertaining to distribution of the software without specific,
+written prior permission.  Ani Joshi makes no representations
+about the suitability of this software for any purpose.  It is provided
+as-is without express or implied warranty.
+
+ANI JOSHI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+EVENT SHALL ANI JOSHI BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-11 21:28:43 UTC (rev 140306)
+++ extra-i686/PKGBUILD 2011-10-11 21:28:44 UTC (rev 140307)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-s3
-pkgver=0.6.3
-pkgrel=5
-pkgdesc=X.org S3 video driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel')
-conflicts=('xorg-server1.10.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-LICENSE)
-md5sums=('5eb06d88533fb327d067928faeb20860'
- '6b2bea29522da7cbb81cadde3235024d')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-  make DESTDIR=${pkgdir} install
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: xf86-video-s3/repos/extra-i686/PKGBUILD (from rev 140271, 

[arch-commits] Commit in xf86-video-s3/repos (6 files)

2011-10-11 Thread Jan de Groot
Date: Tuesday, October 11, 2011 @ 17:28:45
  Author: jgc
Revision: 140308

db-move: moved xf86-video-s3 from [testing] to [extra] (x86_64)

Added:
  xf86-video-s3/repos/extra-x86_64/LICENSE
(from rev 140271, xf86-video-s3/repos/testing-x86_64/LICENSE)
  xf86-video-s3/repos/extra-x86_64/PKGBUILD
(from rev 140271, xf86-video-s3/repos/testing-x86_64/PKGBUILD)
  xf86-video-s3/repos/extra-x86_64/git-fixes.patch
(from rev 140271, xf86-video-s3/repos/testing-x86_64/git-fixes.patch)
Deleted:
  xf86-video-s3/repos/extra-x86_64/LICENSE
  xf86-video-s3/repos/extra-x86_64/PKGBUILD
  xf86-video-s3/repos/testing-x86_64/

-+
 LICENSE |   50 ++---
 PKGBUILD|   60 +++
 git-fixes.patch |  458 ++
 3 files changed, 514 insertions(+), 54 deletions(-)

Deleted: extra-x86_64/LICENSE
===
--- extra-x86_64/LICENSE2011-10-11 21:28:44 UTC (rev 140307)
+++ extra-x86_64/LICENSE2011-10-11 21:28:45 UTC (rev 140308)
@@ -1,25 +0,0 @@
-This package was downloaded from
-http://xorg.freedesktop.org/releases/individual/driver/
-
- Copyright 2001  Ani Joshi ajo...@unixbox.com
-
- XFree86 4.x driver for S3 chipsets
-
-
-Permission to use, copy, modify, distribute, and sell this software and its
-documentation for any purpose is hereby granted without fee, provided that
-the above copyright notice appear in all copies and that both that copyright
-notice and this permission notice appear in supporting documentation and
-that the name of Ani Joshi not be used in advertising or
-publicity pertaining to distribution of the software without specific,
-written prior permission.  Ani Joshi makes no representations
-about the suitability of this software for any purpose.  It is provided
-as-is without express or implied warranty.
-
-ANI JOSHI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
-INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
-EVENT SHALL ANI JOSHI BE LIABLE FOR ANY SPECIAL, INDIRECT OR
-CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
-DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.

Copied: xf86-video-s3/repos/extra-x86_64/LICENSE (from rev 140271, 
xf86-video-s3/repos/testing-x86_64/LICENSE)
===
--- extra-x86_64/LICENSE(rev 0)
+++ extra-x86_64/LICENSE2011-10-11 21:28:45 UTC (rev 140308)
@@ -0,0 +1,25 @@
+This package was downloaded from
+http://xorg.freedesktop.org/releases/individual/driver/
+
+ Copyright 2001  Ani Joshi ajo...@unixbox.com
+
+ XFree86 4.x driver for S3 chipsets
+
+
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that
+the above copyright notice appear in all copies and that both that copyright
+notice and this permission notice appear in supporting documentation and
+that the name of Ani Joshi not be used in advertising or
+publicity pertaining to distribution of the software without specific,
+written prior permission.  Ani Joshi makes no representations
+about the suitability of this software for any purpose.  It is provided
+as-is without express or implied warranty.
+
+ANI JOSHI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+EVENT SHALL ANI JOSHI BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-11 21:28:44 UTC (rev 140307)
+++ extra-x86_64/PKGBUILD   2011-10-11 21:28:45 UTC (rev 140308)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-s3
-pkgver=0.6.3
-pkgrel=5
-pkgdesc=X.org S3 video driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel')
-conflicts=('xorg-server1.10.0')
-options=('!libtool')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-LICENSE)
-md5sums=('5eb06d88533fb327d067928faeb20860'
- '6b2bea29522da7cbb81cadde3235024d')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-  make DESTDIR=${pkgdir} install
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}