[arch-commits] Commit in t1lib/repos (7 files)

Allan McRae allan at archlinux.org
Sat Sep 10 01:36:02 UTC 2011


    Date: Friday, September 9, 2011 @ 21:36:02
  Author: allan
Revision: 137602

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

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

-----------------------------+
 extra-i686/PKGBUILD         |   48 ++++++++++++++++++++++--------------------
 extra-i686/overflow.patch   |   30 +++++++++++++-------------
 extra-x86_64/PKGBUILD       |   48 ++++++++++++++++++++++--------------------
 extra-x86_64/overflow.patch |   15 +++++++++++++
 4 files changed, 82 insertions(+), 59 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2011-09-10 01:34:37 UTC (rev 137601)
+++ extra-i686/PKGBUILD	2011-09-10 01:36:02 UTC (rev 137602)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: tobias <tobias at archlinux.org>
-# Contributor: Rainer Moll <renari at arcor.de>
-
-pkgname=t1lib
-pkgver=5.1.2
-pkgrel=2
-pkgdesc="Library for generating character- and string-glyphs from Adobe Type 1 fonts"
-arch=(i686 x86_64)
-license=("GPL")
-depends=('libxaw')
-options=(!libtool)
-url="http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html"
-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 || return 1
-  make DESTDIR="${pkgdir}" install || return 1
-}

Copied: t1lib/repos/extra-i686/PKGBUILD (from rev 137601, t1lib/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2011-09-10 01:36:02 UTC (rev 137602)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: tobias <tobias at archlinux.org>
+# Contributor: Rainer Moll <renari at arcor.de>
+
+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
+}

Deleted: extra-i686/overflow.patch
===================================================================
--- extra-i686/overflow.patch	2011-09-10 01:34:37 UTC (rev 137601)
+++ extra-i686/overflow.patch	2011-09-10 01:36:02 UTC (rev 137602)
@@ -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 137601, t1lib/trunk/overflow.patch)
===================================================================
--- extra-i686/overflow.patch	                        (rev 0)
+++ extra-i686/overflow.patch	2011-09-10 01:36:02 UTC (rev 137602)
@@ -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	2011-09-10 01:34:37 UTC (rev 137601)
+++ extra-x86_64/PKGBUILD	2011-09-10 01:36:02 UTC (rev 137602)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: tobias <tobias at archlinux.org>
-# Contributor: Rainer Moll <renari at arcor.de>
-
-pkgname=t1lib
-pkgver=5.1.2
-pkgrel=2
-pkgdesc="Library for generating character- and string-glyphs from Adobe Type 1 fonts"
-arch=(i686 x86_64)
-license=("GPL")
-depends=('libxaw')
-options=(!libtool)
-url="http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html"
-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 || return 1
-  make DESTDIR="${pkgdir}" install || return 1
-}

Copied: t1lib/repos/extra-x86_64/PKGBUILD (from rev 137601, t1lib/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2011-09-10 01:36:02 UTC (rev 137602)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: tobias <tobias at archlinux.org>
+# Contributor: Rainer Moll <renari at arcor.de>
+
+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/overflow.patch (from rev 137601, t1lib/trunk/overflow.patch)
===================================================================
--- extra-x86_64/overflow.patch	                        (rev 0)
+++ extra-x86_64/overflow.patch	2011-09-10 01:36:02 UTC (rev 137602)
@@ -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: */




More information about the arch-commits mailing list