[arch-commits] Commit in fcgi/repos (6 files)

Pierre Schmitz pierre at nymeria.archlinux.org
Sun Oct 20 13:02:57 UTC 2013


    Date: Sunday, October 20, 2013 @ 15:02:57
  Author: pierre
Revision: 196847

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

Added:
  fcgi/repos/testing-i686/
  fcgi/repos/testing-i686/PKGBUILD
    (from rev 196845, fcgi/trunk/PKGBUILD)
  fcgi/repos/testing-i686/gcc44-fix-include.patch
    (from rev 196845, fcgi/trunk/gcc44-fix-include.patch)
  fcgi/repos/testing-x86_64/
  fcgi/repos/testing-x86_64/PKGBUILD
    (from rev 196845, fcgi/trunk/PKGBUILD)
  fcgi/repos/testing-x86_64/gcc44-fix-include.patch
    (from rev 196845, fcgi/trunk/gcc44-fix-include.patch)

----------------------------------------+
 testing-i686/PKGBUILD                  |   39 +++++++++++++++++++++++++++++++
 testing-i686/gcc44-fix-include.patch   |   17 +++++++++++++
 testing-x86_64/PKGBUILD                |   39 +++++++++++++++++++++++++++++++
 testing-x86_64/gcc44-fix-include.patch |   17 +++++++++++++
 4 files changed, 112 insertions(+)

Copied: fcgi/repos/testing-i686/PKGBUILD (from rev 196845, fcgi/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2013-10-20 13:02:57 UTC (rev 196847)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: tobias <tobias at justdreams.de>
+# Modified by: eliott <eliott at cactuswax.net>
+# Original by Benjamin Andresen, klapmuetz [at] gmail [dot] com
+
+pkgname=fcgi
+pkgver=2.4.0
+pkgrel=9
+depends=('gcc-libs')
+pkgdesc="FASTCgi (fcgi) is a language independent, high performant extension to CGI"
+arch=('i686' 'x86_64')
+license=('custom')
+options=('!makeflags')
+url="http://www.fastcgi.com"
+source=("http://www.fastcgi.com/dist/${pkgname}-${pkgver}.tar.gz"
+        'gcc44-fix-include.patch')
+md5sums=('d15060a813b91383a9f3c66faf84867e'
+         'a8028462163755f3ce457a5c641f237b')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i "${srcdir}/gcc44-fix-include.patch"
+  libtoolize --force
+  aclocal
+  autoconf
+  automake --foreign
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE.TERMS "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: fcgi/repos/testing-i686/gcc44-fix-include.patch (from rev 196845, fcgi/trunk/gcc44-fix-include.patch)
===================================================================
--- testing-i686/gcc44-fix-include.patch	                        (rev 0)
+++ testing-i686/gcc44-fix-include.patch	2013-10-20 13:02:57 UTC (rev 196847)
@@ -0,0 +1,17 @@
+Author: Tatsuki Sugiura <sugi at nemui.org>
+Origin: vendor, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504963
+Bug-Debian: http://bugs.debian.org/504963
+Forwarded: no
+Last-Update: 2010-02-08
+
+Index: libfcgi/libfcgi/fcgio.cpp
+===================================================================
+--- libfcgi.orig/libfcgi/fcgio.cpp  2010-01-23 19:13:53.000000000 +0900
++++ libfcgi/libfcgi/fcgio.cpp 2010-01-23 19:13:55.000000000 +0900
+@@ -22,6 +22,7 @@
+ #define DLLAPI  __declspec(dllexport)
+ #endif
+ 
++#include <cstdio>
+ #include <limits.h>
+ #include "fcgio.h"

Copied: fcgi/repos/testing-x86_64/PKGBUILD (from rev 196845, fcgi/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2013-10-20 13:02:57 UTC (rev 196847)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: tobias <tobias at justdreams.de>
+# Modified by: eliott <eliott at cactuswax.net>
+# Original by Benjamin Andresen, klapmuetz [at] gmail [dot] com
+
+pkgname=fcgi
+pkgver=2.4.0
+pkgrel=9
+depends=('gcc-libs')
+pkgdesc="FASTCgi (fcgi) is a language independent, high performant extension to CGI"
+arch=('i686' 'x86_64')
+license=('custom')
+options=('!makeflags')
+url="http://www.fastcgi.com"
+source=("http://www.fastcgi.com/dist/${pkgname}-${pkgver}.tar.gz"
+        'gcc44-fix-include.patch')
+md5sums=('d15060a813b91383a9f3c66faf84867e'
+         'a8028462163755f3ce457a5c641f237b')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i "${srcdir}/gcc44-fix-include.patch"
+  libtoolize --force
+  aclocal
+  autoconf
+  automake --foreign
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE.TERMS "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: fcgi/repos/testing-x86_64/gcc44-fix-include.patch (from rev 196845, fcgi/trunk/gcc44-fix-include.patch)
===================================================================
--- testing-x86_64/gcc44-fix-include.patch	                        (rev 0)
+++ testing-x86_64/gcc44-fix-include.patch	2013-10-20 13:02:57 UTC (rev 196847)
@@ -0,0 +1,17 @@
+Author: Tatsuki Sugiura <sugi at nemui.org>
+Origin: vendor, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504963
+Bug-Debian: http://bugs.debian.org/504963
+Forwarded: no
+Last-Update: 2010-02-08
+
+Index: libfcgi/libfcgi/fcgio.cpp
+===================================================================
+--- libfcgi.orig/libfcgi/fcgio.cpp  2010-01-23 19:13:53.000000000 +0900
++++ libfcgi/libfcgi/fcgio.cpp 2010-01-23 19:13:55.000000000 +0900
+@@ -22,6 +22,7 @@
+ #define DLLAPI  __declspec(dllexport)
+ #endif
+ 
++#include <cstdio>
+ #include <limits.h>
+ #include "fcgio.h"




More information about the arch-commits mailing list