Date: Friday, October 25, 2013 @ 04:59:44
  Author: allan
Revision: 197366

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

Added:
  t1lib/repos/extra-i686/PKGBUILD
    (from rev 197365, t1lib/trunk/PKGBUILD)
  t1lib/repos/extra-i686/overflow.patch
    (from rev 197365, t1lib/trunk/overflow.patch)
  t1lib/repos/extra-x86_64/PKGBUILD
    (from rev 197365, t1lib/trunk/PKGBUILD)
  t1lib/repos/extra-x86_64/overflow.patch
    (from rev 197365, t1lib/trunk/overflow.patch)
Deleted:
  t1lib/repos/extra-i686/PKGBUILD
  t1lib/repos/extra-i686/overflow.patch
  t1lib/repos/extra-x86_64/PKGBUILD
  t1lib/repos/extra-x86_64/overflow.patch

-----------------------------+
 /PKGBUILD                   |   50 ++++++++++++++++++++++++++++++++++++++++++
 /overflow.patch             |   30 +++++++++++++++++++++++++
 extra-i686/PKGBUILD         |   26 ---------------------
 extra-i686/overflow.patch   |   15 ------------
 extra-x86_64/PKGBUILD       |   26 ---------------------
 extra-x86_64/overflow.patch |   15 ------------
 6 files changed, 80 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2013-10-25 02:58:40 UTC (rev 197365)
+++ extra-i686/PKGBUILD 2013-10-25 02:59:44 UTC (rev 197366)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: tobias <[email protected]>
-# Contributor: Rainer Moll <[email protected]>
-
-pkgname=t1lib
-pkgver=5.1.2
-pkgrel=3
-pkgdesc="Library for generating character- and string-glyphs from Adobe Type 1 
fonts"
-arch=('i686' 'x86_64')
-url="http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html";
-license=('GPL')
-depends=('libxaw')
-options=(!libtool)
-source=(http://www.ibiblio.org/pub/Linux/libs/graphics/${pkgname}-${pkgver}.tar.gz
 )
-md5sums=('a5629b56b93134377718009df1435f3c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make without_doc
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: t1lib/repos/extra-i686/PKGBUILD (from rev 197365, t1lib/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD                         (rev 0)
+++ extra-i686/PKGBUILD 2013-10-25 02:59:44 UTC (rev 197366)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: tobias <[email protected]>
+# Contributor: Rainer Moll <[email protected]>
+
+pkgname=t1lib
+pkgver=5.1.2
+pkgrel=4
+pkgdesc="Library for generating character- and string-glyphs from Adobe Type 1 
fonts"
+arch=('i686' 'x86_64')
+url="http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html";
+license=('GPL')
+depends=('libxaw')
+source=(http://www.ibiblio.org/pub/Linux/libs/graphics/${pkgname}-${pkgver}.tar.gz
 )
+md5sums=('a5629b56b93134377718009df1435f3c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make without_doc
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/overflow.patch
===================================================================
--- extra-i686/overflow.patch   2013-10-25 02:58:40 UTC (rev 197365)
+++ extra-i686/overflow.patch   2013-10-25 02:59:44 UTC (rev 197366)
@@ -1,15 +0,0 @@
---- t1env.c.orig       2007-09-16 19:56:38.319184208 +0200
-+++ t1env.c    2007-09-16 20:05:02.057070439 +0200
-@@ -611,6 +611,12 @@
- #endif 
-     strcat( pathbuf, DIRECTORY_SEP);
-     /* And finally the filename: */
-+    /* If current pathbuf + StrippedName + 1 byte for NULL is bigger than 
pathbuf
-+       let's try next pathbuf */
-+    if( strlen(pathbuf) + strlen(StrippedName) + 1 > sizeof(pathbuf) ) {
-+      i++;
-+      continue;
-+    }
-     strcat( pathbuf, StrippedName);
-     
-     /* Check for existence of the path: */

Copied: t1lib/repos/extra-i686/overflow.patch (from rev 197365, 
t1lib/trunk/overflow.patch)
===================================================================
--- extra-i686/overflow.patch                           (rev 0)
+++ extra-i686/overflow.patch   2013-10-25 02:59:44 UTC (rev 197366)
@@ -0,0 +1,15 @@
+--- t1env.c.orig       2007-09-16 19:56:38.319184208 +0200
++++ t1env.c    2007-09-16 20:05:02.057070439 +0200
+@@ -611,6 +611,12 @@
+ #endif 
+     strcat( pathbuf, DIRECTORY_SEP);
+     /* And finally the filename: */
++    /* If current pathbuf + StrippedName + 1 byte for NULL is bigger than 
pathbuf
++       let's try next pathbuf */
++    if( strlen(pathbuf) + strlen(StrippedName) + 1 > sizeof(pathbuf) ) {
++      i++;
++      continue;
++    }
+     strcat( pathbuf, StrippedName);
+     
+     /* Check for existence of the path: */

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD       2013-10-25 02:58:40 UTC (rev 197365)
+++ extra-x86_64/PKGBUILD       2013-10-25 02:59:44 UTC (rev 197366)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: tobias <[email protected]>
-# Contributor: Rainer Moll <[email protected]>
-
-pkgname=t1lib
-pkgver=5.1.2
-pkgrel=3
-pkgdesc="Library for generating character- and string-glyphs from Adobe Type 1 
fonts"
-arch=('i686' 'x86_64')
-url="http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html";
-license=('GPL')
-depends=('libxaw')
-options=(!libtool)
-source=(http://www.ibiblio.org/pub/Linux/libs/graphics/${pkgname}-${pkgver}.tar.gz
 )
-md5sums=('a5629b56b93134377718009df1435f3c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make without_doc
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: t1lib/repos/extra-x86_64/PKGBUILD (from rev 197365, 
t1lib/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD                               (rev 0)
+++ extra-x86_64/PKGBUILD       2013-10-25 02:59:44 UTC (rev 197366)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: tobias <[email protected]>
+# Contributor: Rainer Moll <[email protected]>
+
+pkgname=t1lib
+pkgver=5.1.2
+pkgrel=4
+pkgdesc="Library for generating character- and string-glyphs from Adobe Type 1 
fonts"
+arch=('i686' 'x86_64')
+url="http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html";
+license=('GPL')
+depends=('libxaw')
+source=(http://www.ibiblio.org/pub/Linux/libs/graphics/${pkgname}-${pkgver}.tar.gz
 )
+md5sums=('a5629b56b93134377718009df1435f3c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make without_doc
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/overflow.patch
===================================================================
--- extra-x86_64/overflow.patch 2013-10-25 02:58:40 UTC (rev 197365)
+++ extra-x86_64/overflow.patch 2013-10-25 02:59:44 UTC (rev 197366)
@@ -1,15 +0,0 @@
---- t1env.c.orig       2007-09-16 19:56:38.319184208 +0200
-+++ t1env.c    2007-09-16 20:05:02.057070439 +0200
-@@ -611,6 +611,12 @@
- #endif 
-     strcat( pathbuf, DIRECTORY_SEP);
-     /* And finally the filename: */
-+    /* If current pathbuf + StrippedName + 1 byte for NULL is bigger than 
pathbuf
-+       let's try next pathbuf */
-+    if( strlen(pathbuf) + strlen(StrippedName) + 1 > sizeof(pathbuf) ) {
-+      i++;
-+      continue;
-+    }
-     strcat( pathbuf, StrippedName);
-     
-     /* Check for existence of the path: */

Copied: t1lib/repos/extra-x86_64/overflow.patch (from rev 197365, 
t1lib/trunk/overflow.patch)
===================================================================
--- extra-x86_64/overflow.patch                         (rev 0)
+++ extra-x86_64/overflow.patch 2013-10-25 02:59:44 UTC (rev 197366)
@@ -0,0 +1,15 @@
+--- t1env.c.orig       2007-09-16 19:56:38.319184208 +0200
++++ t1env.c    2007-09-16 20:05:02.057070439 +0200
+@@ -611,6 +611,12 @@
+ #endif 
+     strcat( pathbuf, DIRECTORY_SEP);
+     /* And finally the filename: */
++    /* If current pathbuf + StrippedName + 1 byte for NULL is bigger than 
pathbuf
++       let's try next pathbuf */
++    if( strlen(pathbuf) + strlen(StrippedName) + 1 > sizeof(pathbuf) ) {
++      i++;
++      continue;
++    }
+     strcat( pathbuf, StrippedName);
+     
+     /* Check for existence of the path: */

Reply via email to