[arch-commits] Commit in (transfig)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 07:33:49
  Author: arojas
Revision: 276909

Replaced by fig2dev

Deleted:
  transfig/


[arch-commits] Commit in transfig/trunk (PKGBUILD transfig-3.2.5d-libpng-1.5.patch)

2013-09-09 Thread Eric Bélanger
Date: Monday, September 9, 2013 @ 20:47:38
  Author: eric
Revision: 194010

upgpkg: transfig 3.2.5e-1

Upstream update, Replace csh script by sh one, Add bc depends, Remove old patch

Modified:
  transfig/trunk/PKGBUILD
Deleted:
  transfig/trunk/transfig-3.2.5d-libpng-1.5.patch

--+
 PKGBUILD |   20 --
 transfig-3.2.5d-libpng-1.5.patch |   39 -
 2 files changed, 9 insertions(+), 50 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-09 17:42:53 UTC (rev 194009)
+++ PKGBUILD2013-09-09 18:47:38 UTC (rev 194010)
@@ -2,25 +2,22 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=transfig
-pkgver=3.2.5d
-pkgrel=2
+pkgver=3.2.5e
+pkgrel=1
 pkgdesc=Format conversion utility that can be used with xfig
 arch=('i686' 'x86_64')
 url=http://www.xfig.org;
 license=('custom')
-depends=('libpng' 'libxpm')
+depends=('libpng' 'libxpm' 'bc')
 makedepends=('imake')
-source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE \
-transfig-3.2.5d-libpng-1.5.patch)
-sha1sums=('90ff277cc9b3fa0d0313052fcf5e3ffad8652abc'
-  'b8b712871615308b8b6add92f86d218437d652f2'
-  '9f9f332b0b31e58e59542bc1568df9617b71710a')
+source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE)
+sha1sums=('27aa9691bf84f8775db9be39c453a8132148bad1'
+  'b8b712871615308b8b6add92f86d218437d652f2')
 
 prepare() {
   cd ${pkgname}.${pkgver}
-  sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile
-  sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile
-  patch -p1 -i ../transfig-3.2.5d-libpng-1.5.patch
+  sed -i 's/XCOMM USELATEX2E/USELATEX2E/' transfig/Imakefile
+  sed -i 's/XCOMM USEINLINE/USEINLINE/' fig2dev/Imakefile
 }
 
 build() {
@@ -35,5 +32,6 @@
   make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig \
 FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man \
 install install.man
+  mv ${pkgdir}/usr/bin/fig2ps2tex.sh ${pkgdir}/usr/bin/fig2ps2tex
   install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }

Deleted: transfig-3.2.5d-libpng-1.5.patch
===
--- transfig-3.2.5d-libpng-1.5.patch2013-09-09 17:42:53 UTC (rev 194009)
+++ transfig-3.2.5d-libpng-1.5.patch2013-09-09 18:47:38 UTC (rev 194010)
@@ -1,39 +0,0 @@
-http://bugs.gentoo.org/show_bug.cgi?id=356751
-
-Index: transfig.3.2.5d/fig2dev/dev/readpng.c
-===
 transfig.3.2.5d.orig/fig2dev/dev/readpng.c
-+++ transfig.3.2.5d/fig2dev/dev/readpng.c
-@@ -62,7 +62,7 @@ read_png(file,filetype,pic,llx,lly)
- }
- 
- /* set long jump here */
--if (setjmp(png_ptr-jmpbuf)) {
-+if (setjmp(png_jmpbuf(png_ptr))) {
-   /* if we get here there was a problem reading the file */
-   png_destroy_read_struct(png_ptr, info_ptr, end_info);
-   return 0;
-@@ -78,15 +78,17 @@ read_png(file,filetype,pic,llx,lly)
- png_get_IHDR(png_ptr, info_ptr, w, h, bit_depth, color_type,
-   interlace_type, compression_type, filter_type);
- 
--if (info_ptr-valid  PNG_INFO_gAMA)
--  png_set_gamma(png_ptr, 2.2, info_ptr-gamma);
--else
--  png_set_gamma(png_ptr, 2.2, 0.45);
-+png_fixed_point gamma = 0.45;
-+png_get_gAMA_fixed(png_ptr,info_ptr,gamma);
-+png_set_gamma(png_ptr, 2.2, gamma);
- 
--if (info_ptr-valid  PNG_INFO_bKGD)
-+if (png_get_valid(png_ptr,info_ptr,PNG_INFO_bKGD)) {
-   /* set the background to the one supplied */
--  png_set_background(png_ptr, info_ptr-background,
-+  png_color_16p background;
-+  png_get_bKGD(png_ptr,info_ptr,background);
-+  png_set_background(png_ptr, background,
-   PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
-+}
- else {
-   /* blend the canvas background using the alpha channel */
-   if (bgspec) {



[arch-commits] Commit in transfig/repos (10 files)

2013-09-09 Thread Eric Bélanger
Date: Monday, September 9, 2013 @ 20:48:23
  Author: eric
Revision: 194011

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

Added:
  transfig/repos/extra-i686/LICENSE
(from rev 194010, transfig/trunk/LICENSE)
  transfig/repos/extra-i686/PKGBUILD
(from rev 194010, transfig/trunk/PKGBUILD)
  transfig/repos/extra-x86_64/LICENSE
(from rev 194010, transfig/trunk/LICENSE)
  transfig/repos/extra-x86_64/PKGBUILD
(from rev 194010, transfig/trunk/PKGBUILD)
Deleted:
  transfig/repos/extra-i686/LICENSE
  transfig/repos/extra-i686/PKGBUILD
  transfig/repos/extra-i686/transfig-3.2.5d-libpng-1.5.patch
  transfig/repos/extra-x86_64/LICENSE
  transfig/repos/extra-x86_64/PKGBUILD
  transfig/repos/extra-x86_64/transfig-3.2.5d-libpng-1.5.patch

---+
 /LICENSE  |   46 ++
 /PKGBUILD |   74 
 extra-i686/LICENSE|   23 ---
 extra-i686/PKGBUILD   |   39 
 extra-i686/transfig-3.2.5d-libpng-1.5.patch   |   39 
 extra-x86_64/LICENSE  |   23 ---
 extra-x86_64/PKGBUILD |   39 
 extra-x86_64/transfig-3.2.5d-libpng-1.5.patch |   39 
 8 files changed, 120 insertions(+), 202 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2013-09-09 18:47:38 UTC (rev 194010)
+++ extra-i686/LICENSE  2013-09-09 18:48:23 UTC (rev 194011)
@@ -1,23 +0,0 @@
-/*
- * TransFig: Facility for Translating Fig code
- * Copyright (c) 1991 by Micah Beck
- * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
- *
- * Any party obtaining a copy of these files is granted, free of charge, a
- * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
- * nonexclusive right and license to deal in this software and
- * documentation files (the Software), including without limitation the
- * rights to use, copy, modify, merge, publish and/or distribute copies of
- * the Software, and to permit persons who receive copies from any such 
- * party to do so, with the only requirement being that this copyright 
- * notice remain intact.
- *
- */
-
-THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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: transfig/repos/extra-i686/LICENSE (from rev 194010, 
transfig/trunk/LICENSE)
===
--- extra-i686/LICENSE  (rev 0)
+++ extra-i686/LICENSE  2013-09-09 18:48:23 UTC (rev 194011)
@@ -0,0 +1,23 @@
+/*
+ * TransFig: Facility for Translating Fig code
+ * Copyright (c) 1991 by Micah Beck
+ * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
+ *
+ * Any party obtaining a copy of these files is granted, free of charge, a
+ * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
+ * nonexclusive right and license to deal in this software and
+ * documentation files (the Software), including without limitation the
+ * rights to use, copy, modify, merge, publish and/or distribute copies of
+ * the Software, and to permit persons who receive copies from any such 
+ * party to do so, with the only requirement being that this copyright 
+ * notice remain intact.
+ *
+ */
+
+THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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 2013-09-09 18:47:38 UTC (rev 194010)
+++ extra-i686/PKGBUILD 2013-09-09 18:48:23 UTC (rev 194011)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=transfig
-pkgver=3.2.5d
-pkgrel=2
-pkgdesc=Format conversion utility that can be used with xfig
-arch=('i686' 'x86_64')
-url=http://www.xfig.org;
-license=('custom')
-depends=('libpng' 'libxpm')
-makedepends=('imake')
-source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE \
-transfig-3.2.5d-libpng-1.5.patch)
-sha1sums=('90ff277cc9b3fa0d0313052fcf5e3ffad8652abc'
-  

[arch-commits] Commit in transfig/trunk (PKGBUILD)

2013-04-27 Thread Eric Bélanger
Date: Sunday, April 28, 2013 @ 04:23:17
  Author: eric
Revision: 183810

upgpkg: transfig 3.2.5d-2

Rebuild against libpng 1.6

Modified:
  transfig/trunk/PKGBUILD

--+
 PKGBUILD |   12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-28 02:21:40 UTC (rev 183809)
+++ PKGBUILD2013-04-28 02:23:17 UTC (rev 183810)
@@ -3,7 +3,7 @@
 
 pkgname=transfig
 pkgver=3.2.5d
-pkgrel=1
+pkgrel=2
 pkgdesc=Format conversion utility that can be used with xfig
 arch=('i686' 'x86_64')
 url=http://www.xfig.org;
@@ -16,20 +16,22 @@
   'b8b712871615308b8b6add92f86d218437d652f2'
   '9f9f332b0b31e58e59542bc1568df9617b71710a')
 
-build() {
-  cd ${srcdir}/${pkgname}.${pkgver}
+prepare() {
+  cd ${pkgname}.${pkgver}
   sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile
   sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile
   patch -p1 -i ../transfig-3.2.5d-libpng-1.5.patch
+}
 
+build() {
+  cd ${pkgname}.${pkgver}
   xmkmf
   make FIG2DEV_LIBDIR=/usr/share/fig2dev Makefiles
   make FIG2DEV_LIBDIR=/usr/share/fig2dev XFIGLIBDIR=/usr/share/xfig
 }
 
 package() {
-  cd ${srcdir}/${pkgname}.${pkgver}
-
+  cd ${pkgname}.${pkgver}
   make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig \
 FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man \
 install install.man



[arch-commits] Commit in transfig/repos (8 files)

2013-04-27 Thread Eric Bélanger
Date: Sunday, April 28, 2013 @ 04:24:53
  Author: eric
Revision: 183811

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

Added:
  transfig/repos/staging-i686/
  transfig/repos/staging-i686/LICENSE
(from rev 183810, transfig/trunk/LICENSE)
  transfig/repos/staging-i686/PKGBUILD
(from rev 183810, transfig/trunk/PKGBUILD)
  transfig/repos/staging-i686/transfig-3.2.5d-libpng-1.5.patch
(from rev 183810, transfig/trunk/transfig-3.2.5d-libpng-1.5.patch)
  transfig/repos/staging-x86_64/
  transfig/repos/staging-x86_64/LICENSE
(from rev 183810, transfig/trunk/LICENSE)
  transfig/repos/staging-x86_64/PKGBUILD
(from rev 183810, transfig/trunk/PKGBUILD)
  transfig/repos/staging-x86_64/transfig-3.2.5d-libpng-1.5.patch
(from rev 183810, transfig/trunk/transfig-3.2.5d-libpng-1.5.patch)

-+
 staging-i686/LICENSE|   23 
 staging-i686/PKGBUILD   |   39 ++
 staging-i686/transfig-3.2.5d-libpng-1.5.patch   |   39 ++
 staging-x86_64/LICENSE  |   23 
 staging-x86_64/PKGBUILD |   39 ++
 staging-x86_64/transfig-3.2.5d-libpng-1.5.patch |   39 ++
 6 files changed, 202 insertions(+)

Copied: transfig/repos/staging-i686/LICENSE (from rev 183810, 
transfig/trunk/LICENSE)
===
--- staging-i686/LICENSE(rev 0)
+++ staging-i686/LICENSE2013-04-28 02:24:53 UTC (rev 183811)
@@ -0,0 +1,23 @@
+/*
+ * TransFig: Facility for Translating Fig code
+ * Copyright (c) 1991 by Micah Beck
+ * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
+ *
+ * Any party obtaining a copy of these files is granted, free of charge, a
+ * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
+ * nonexclusive right and license to deal in this software and
+ * documentation files (the Software), including without limitation the
+ * rights to use, copy, modify, merge, publish and/or distribute copies of
+ * the Software, and to permit persons who receive copies from any such 
+ * party to do so, with the only requirement being that this copyright 
+ * notice remain intact.
+ *
+ */
+
+THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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: transfig/repos/staging-i686/PKGBUILD (from rev 183810, 
transfig/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-28 02:24:53 UTC (rev 183811)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=transfig
+pkgver=3.2.5d
+pkgrel=2
+pkgdesc=Format conversion utility that can be used with xfig
+arch=('i686' 'x86_64')
+url=http://www.xfig.org;
+license=('custom')
+depends=('libpng' 'libxpm')
+makedepends=('imake')
+source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE \
+transfig-3.2.5d-libpng-1.5.patch)
+sha1sums=('90ff277cc9b3fa0d0313052fcf5e3ffad8652abc'
+  'b8b712871615308b8b6add92f86d218437d652f2'
+  '9f9f332b0b31e58e59542bc1568df9617b71710a')
+
+prepare() {
+  cd ${pkgname}.${pkgver}
+  sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile
+  sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile
+  patch -p1 -i ../transfig-3.2.5d-libpng-1.5.patch
+}
+
+build() {
+  cd ${pkgname}.${pkgver}
+  xmkmf
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev Makefiles
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev XFIGLIBDIR=/usr/share/xfig
+}
+
+package() {
+  cd ${pkgname}.${pkgver}
+  make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig \
+FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man \
+install install.man
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: transfig/repos/staging-i686/transfig-3.2.5d-libpng-1.5.patch (from rev 
183810, transfig/trunk/transfig-3.2.5d-libpng-1.5.patch)
===
--- staging-i686/transfig-3.2.5d-libpng-1.5.patch   
(rev 0)
+++ staging-i686/transfig-3.2.5d-libpng-1.5.patch   2013-04-28 02:24:53 UTC 
(rev 183811)
@@ -0,0 +1,39 @@
+http://bugs.gentoo.org/show_bug.cgi?id=356751
+
+Index: transfig.3.2.5d/fig2dev/dev/readpng.c

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

2012-02-05 Thread Ionut Biru
Date: Sunday, February 5, 2012 @ 06:57:09
  Author: ibiru
Revision: 148943

db-move: moved transfig from [testing] to [extra] (i686)

Added:
  transfig/repos/extra-i686/LICENSE
(from rev 148654, transfig/repos/testing-i686/LICENSE)
  transfig/repos/extra-i686/PKGBUILD
(from rev 148654, transfig/repos/testing-i686/PKGBUILD)
  transfig/repos/extra-i686/transfig-3.2.5d-libpng-1.5.patch
(from rev 148654, 
transfig/repos/testing-i686/transfig-3.2.5d-libpng-1.5.patch)
Deleted:
  transfig/repos/extra-i686/ChangeLog
  transfig/repos/extra-i686/LICENSE
  transfig/repos/extra-i686/PKGBUILD
  transfig/repos/testing-i686/

--+
 ChangeLog|   36 --
 LICENSE  |   46 +++
 PKGBUILD |   73 ++---
 transfig-3.2.5d-libpng-1.5.patch |   39 +++
 4 files changed, 99 insertions(+), 95 deletions(-)

Deleted: extra-i686/ChangeLog
===
--- extra-i686/ChangeLog2012-02-05 11:57:05 UTC (rev 148942)
+++ extra-i686/ChangeLog2012-02-05 11:57:09 UTC (rev 148943)
@@ -1,36 +0,0 @@
-2010-05-26  Jan de Groot  j...@archlinux.org
-   * transfig 3.2.5c-3
-   * Rebuilt for libpng 1.4.2, png_set_dither has been renamed
-
-2010-01-27  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5c-2
-   * Rebuilt for libpng 1.4 and libjpeg 8
-
-2010-01-11  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5c-1
-   * Upstream update
-   * Removed force option
-
-2009-08-12  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5a-1
-   * Upstream update
-   * Added force option
-
-2009-03-21  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5-2
-   * Removed uneeded stderr message (close FS#13825)
-
-2008-12-14  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5-1
-   * Upstream update
-   * Added arch tag
-   * Added license
-   * Added imake makedepends
-   * Added man pages
-   * Removed old patches
-   * Added ChangeLog

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2012-02-05 11:57:05 UTC (rev 148942)
+++ extra-i686/LICENSE  2012-02-05 11:57:09 UTC (rev 148943)
@@ -1,23 +0,0 @@
-/*
- * TransFig: Facility for Translating Fig code
- * Copyright (c) 1991 by Micah Beck
- * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
- *
- * Any party obtaining a copy of these files is granted, free of charge, a
- * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
- * nonexclusive right and license to deal in this software and
- * documentation files (the Software), including without limitation the
- * rights to use, copy, modify, merge, publish and/or distribute copies of
- * the Software, and to permit persons who receive copies from any such 
- * party to do so, with the only requirement being that this copyright 
- * notice remain intact.
- *
- */
-
-THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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: transfig/repos/extra-i686/LICENSE (from rev 148654, 
transfig/repos/testing-i686/LICENSE)
===
--- extra-i686/LICENSE  (rev 0)
+++ extra-i686/LICENSE  2012-02-05 11:57:09 UTC (rev 148943)
@@ -0,0 +1,23 @@
+/*
+ * TransFig: Facility for Translating Fig code
+ * Copyright (c) 1991 by Micah Beck
+ * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
+ *
+ * Any party obtaining a copy of these files is granted, free of charge, a
+ * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
+ * nonexclusive right and license to deal in this software and
+ * documentation files (the Software), including without limitation the
+ * rights to use, copy, modify, merge, publish and/or distribute copies of
+ * the Software, and to permit persons who receive copies from any such 
+ * party to do so, with the only requirement being that this copyright 
+ * notice remain intact.
+ *
+ */
+
+THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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, 

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

2012-02-05 Thread Ionut Biru
Date: Sunday, February 5, 2012 @ 06:57:10
  Author: ibiru
Revision: 148944

db-move: moved transfig from [testing] to [extra] (x86_64)

Added:
  transfig/repos/extra-x86_64/LICENSE
(from rev 148654, transfig/repos/testing-x86_64/LICENSE)
  transfig/repos/extra-x86_64/PKGBUILD
(from rev 148654, transfig/repos/testing-x86_64/PKGBUILD)
  transfig/repos/extra-x86_64/transfig-3.2.5d-libpng-1.5.patch
(from rev 148654, 
transfig/repos/testing-x86_64/transfig-3.2.5d-libpng-1.5.patch)
Deleted:
  transfig/repos/extra-x86_64/ChangeLog
  transfig/repos/extra-x86_64/LICENSE
  transfig/repos/extra-x86_64/PKGBUILD
  transfig/repos/testing-x86_64/

--+
 ChangeLog|   36 --
 LICENSE  |   46 +++
 PKGBUILD |   73 ++---
 transfig-3.2.5d-libpng-1.5.patch |   39 +++
 4 files changed, 99 insertions(+), 95 deletions(-)

Deleted: extra-x86_64/ChangeLog
===
--- extra-x86_64/ChangeLog  2012-02-05 11:57:09 UTC (rev 148943)
+++ extra-x86_64/ChangeLog  2012-02-05 11:57:10 UTC (rev 148944)
@@ -1,36 +0,0 @@
-2010-05-26  Jan de Groot  j...@archlinux.org
-   * transfig 3.2.5c-3
-   * Rebuilt for libpng 1.4.2, png_set_dither has been renamed
-
-2010-01-27  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5c-2
-   * Rebuilt for libpng 1.4 and libjpeg 8
-
-2010-01-11  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5c-1
-   * Upstream update
-   * Removed force option
-
-2009-08-12  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5a-1
-   * Upstream update
-   * Added force option
-
-2009-03-21  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5-2
-   * Removed uneeded stderr message (close FS#13825)
-
-2008-12-14  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5-1
-   * Upstream update
-   * Added arch tag
-   * Added license
-   * Added imake makedepends
-   * Added man pages
-   * Removed old patches
-   * Added ChangeLog

Deleted: extra-x86_64/LICENSE
===
--- extra-x86_64/LICENSE2012-02-05 11:57:09 UTC (rev 148943)
+++ extra-x86_64/LICENSE2012-02-05 11:57:10 UTC (rev 148944)
@@ -1,23 +0,0 @@
-/*
- * TransFig: Facility for Translating Fig code
- * Copyright (c) 1991 by Micah Beck
- * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
- *
- * Any party obtaining a copy of these files is granted, free of charge, a
- * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
- * nonexclusive right and license to deal in this software and
- * documentation files (the Software), including without limitation the
- * rights to use, copy, modify, merge, publish and/or distribute copies of
- * the Software, and to permit persons who receive copies from any such 
- * party to do so, with the only requirement being that this copyright 
- * notice remain intact.
- *
- */
-
-THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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: transfig/repos/extra-x86_64/LICENSE (from rev 148654, 
transfig/repos/testing-x86_64/LICENSE)
===
--- extra-x86_64/LICENSE(rev 0)
+++ extra-x86_64/LICENSE2012-02-05 11:57:10 UTC (rev 148944)
@@ -0,0 +1,23 @@
+/*
+ * TransFig: Facility for Translating Fig code
+ * Copyright (c) 1991 by Micah Beck
+ * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
+ *
+ * Any party obtaining a copy of these files is granted, free of charge, a
+ * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
+ * nonexclusive right and license to deal in this software and
+ * documentation files (the Software), including without limitation the
+ * rights to use, copy, modify, merge, publish and/or distribute copies of
+ * the Software, and to permit persons who receive copies from any such 
+ * party to do so, with the only requirement being that this copyright 
+ * notice remain intact.
+ *
+ */
+
+THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL,
+INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+LOSS OF USE, DATA OR PROFITS, WHETHER IN 

[arch-commits] Commit in transfig/repos (5 files)

2012-01-30 Thread Ionut Biru
Date: Monday, January 30, 2012 @ 13:51:02
  Author: ibiru
Revision: 148322

db-move: moved transfig from [staging] to [testing] (i686)

Added:
  transfig/repos/testing-i686/
  transfig/repos/testing-i686/LICENSE
(from rev 148047, transfig/repos/staging-i686/LICENSE)
  transfig/repos/testing-i686/PKGBUILD
(from rev 148047, transfig/repos/staging-i686/PKGBUILD)
  transfig/repos/testing-i686/transfig-3.2.5d-libpng-1.5.patch
(from rev 148047, 
transfig/repos/staging-i686/transfig-3.2.5d-libpng-1.5.patch)
Deleted:
  transfig/repos/staging-i686/

--+
 LICENSE  |   23 +
 PKGBUILD |   37 +++
 transfig-3.2.5d-libpng-1.5.patch |   39 +
 3 files changed, 99 insertions(+)

Copied: transfig/repos/testing-i686/LICENSE (from rev 148047, 
transfig/repos/staging-i686/LICENSE)
===
--- testing-i686/LICENSE(rev 0)
+++ testing-i686/LICENSE2012-01-30 18:51:02 UTC (rev 148322)
@@ -0,0 +1,23 @@
+/*
+ * TransFig: Facility for Translating Fig code
+ * Copyright (c) 1991 by Micah Beck
+ * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
+ *
+ * Any party obtaining a copy of these files is granted, free of charge, a
+ * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
+ * nonexclusive right and license to deal in this software and
+ * documentation files (the Software), including without limitation the
+ * rights to use, copy, modify, merge, publish and/or distribute copies of
+ * the Software, and to permit persons who receive copies from any such 
+ * party to do so, with the only requirement being that this copyright 
+ * notice remain intact.
+ *
+ */
+
+THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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: transfig/repos/testing-i686/PKGBUILD (from rev 148047, 
transfig/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-01-30 18:51:02 UTC (rev 148322)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=transfig
+pkgver=3.2.5d
+pkgrel=1
+pkgdesc=Format conversion utility that can be used with xfig
+arch=('i686' 'x86_64')
+url=http://www.xfig.org;
+license=('custom')
+depends=('libpng' 'libxpm')
+makedepends=('imake')
+source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE \
+transfig-3.2.5d-libpng-1.5.patch)
+sha1sums=('90ff277cc9b3fa0d0313052fcf5e3ffad8652abc'
+  'b8b712871615308b8b6add92f86d218437d652f2'
+  '9f9f332b0b31e58e59542bc1568df9617b71710a')
+
+build() {
+  cd ${srcdir}/${pkgname}.${pkgver}
+  sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile
+  sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile
+  patch -p1 -i ../transfig-3.2.5d-libpng-1.5.patch
+
+  xmkmf
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev Makefiles
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev XFIGLIBDIR=/usr/share/xfig
+}
+
+package() {
+  cd ${srcdir}/${pkgname}.${pkgver}
+
+  make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig \
+FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man \
+install install.man
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: transfig/repos/testing-i686/transfig-3.2.5d-libpng-1.5.patch (from rev 
148047, transfig/repos/staging-i686/transfig-3.2.5d-libpng-1.5.patch)
===
--- testing-i686/transfig-3.2.5d-libpng-1.5.patch   
(rev 0)
+++ testing-i686/transfig-3.2.5d-libpng-1.5.patch   2012-01-30 18:51:02 UTC 
(rev 148322)
@@ -0,0 +1,39 @@
+http://bugs.gentoo.org/show_bug.cgi?id=356751
+
+Index: transfig.3.2.5d/fig2dev/dev/readpng.c
+===
+--- transfig.3.2.5d.orig/fig2dev/dev/readpng.c
 transfig.3.2.5d/fig2dev/dev/readpng.c
+@@ -62,7 +62,7 @@ read_png(file,filetype,pic,llx,lly)
+ }
+ 
+ /* set long jump here */
+-if (setjmp(png_ptr-jmpbuf)) {
++if (setjmp(png_jmpbuf(png_ptr))) {
+   /* if we get here there was a problem reading the file */
+   png_destroy_read_struct(png_ptr, info_ptr, end_info);
+   return 0;
+@@ -78,15 +78,17 @@ read_png(file,filetype,pic,llx,lly)
+ 

[arch-commits] Commit in transfig/repos (5 files)

2012-01-30 Thread Ionut Biru
Date: Monday, January 30, 2012 @ 13:51:04
  Author: ibiru
Revision: 148323

db-move: moved transfig from [staging] to [testing] (x86_64)

Added:
  transfig/repos/testing-x86_64/
  transfig/repos/testing-x86_64/LICENSE
(from rev 148047, transfig/repos/staging-x86_64/LICENSE)
  transfig/repos/testing-x86_64/PKGBUILD
(from rev 148047, transfig/repos/staging-x86_64/PKGBUILD)
  transfig/repos/testing-x86_64/transfig-3.2.5d-libpng-1.5.patch
(from rev 148047, 
transfig/repos/staging-x86_64/transfig-3.2.5d-libpng-1.5.patch)
Deleted:
  transfig/repos/staging-x86_64/

--+
 LICENSE  |   23 +
 PKGBUILD |   37 +++
 transfig-3.2.5d-libpng-1.5.patch |   39 +
 3 files changed, 99 insertions(+)

Copied: transfig/repos/testing-x86_64/LICENSE (from rev 148047, 
transfig/repos/staging-x86_64/LICENSE)
===
--- testing-x86_64/LICENSE  (rev 0)
+++ testing-x86_64/LICENSE  2012-01-30 18:51:04 UTC (rev 148323)
@@ -0,0 +1,23 @@
+/*
+ * TransFig: Facility for Translating Fig code
+ * Copyright (c) 1991 by Micah Beck
+ * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
+ *
+ * Any party obtaining a copy of these files is granted, free of charge, a
+ * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
+ * nonexclusive right and license to deal in this software and
+ * documentation files (the Software), including without limitation the
+ * rights to use, copy, modify, merge, publish and/or distribute copies of
+ * the Software, and to permit persons who receive copies from any such 
+ * party to do so, with the only requirement being that this copyright 
+ * notice remain intact.
+ *
+ */
+
+THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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: transfig/repos/testing-x86_64/PKGBUILD (from rev 148047, 
transfig/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-01-30 18:51:04 UTC (rev 148323)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=transfig
+pkgver=3.2.5d
+pkgrel=1
+pkgdesc=Format conversion utility that can be used with xfig
+arch=('i686' 'x86_64')
+url=http://www.xfig.org;
+license=('custom')
+depends=('libpng' 'libxpm')
+makedepends=('imake')
+source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE \
+transfig-3.2.5d-libpng-1.5.patch)
+sha1sums=('90ff277cc9b3fa0d0313052fcf5e3ffad8652abc'
+  'b8b712871615308b8b6add92f86d218437d652f2'
+  '9f9f332b0b31e58e59542bc1568df9617b71710a')
+
+build() {
+  cd ${srcdir}/${pkgname}.${pkgver}
+  sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile
+  sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile
+  patch -p1 -i ../transfig-3.2.5d-libpng-1.5.patch
+
+  xmkmf
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev Makefiles
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev XFIGLIBDIR=/usr/share/xfig
+}
+
+package() {
+  cd ${srcdir}/${pkgname}.${pkgver}
+
+  make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig \
+FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man \
+install install.man
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: transfig/repos/testing-x86_64/transfig-3.2.5d-libpng-1.5.patch (from 
rev 148047, transfig/repos/staging-x86_64/transfig-3.2.5d-libpng-1.5.patch)
===
--- testing-x86_64/transfig-3.2.5d-libpng-1.5.patch 
(rev 0)
+++ testing-x86_64/transfig-3.2.5d-libpng-1.5.patch 2012-01-30 18:51:04 UTC 
(rev 148323)
@@ -0,0 +1,39 @@
+http://bugs.gentoo.org/show_bug.cgi?id=356751
+
+Index: transfig.3.2.5d/fig2dev/dev/readpng.c
+===
+--- transfig.3.2.5d.orig/fig2dev/dev/readpng.c
 transfig.3.2.5d/fig2dev/dev/readpng.c
+@@ -62,7 +62,7 @@ read_png(file,filetype,pic,llx,lly)
+ }
+ 
+ /* set long jump here */
+-if (setjmp(png_ptr-jmpbuf)) {
++if (setjmp(png_jmpbuf(png_ptr))) {
+   /* if we get here there was a problem reading the file */
+   png_destroy_read_struct(png_ptr, info_ptr, end_info);
+   return 0;
+@@ -78,15 +78,17 @@ 

[arch-commits] Commit in transfig/trunk (3 files)

2012-01-18 Thread Eric Bélanger
Date: Wednesday, January 18, 2012 @ 20:34:08
  Author: eric
Revision: 146870

upgpkg: transfig 3.2.5d-1

Upstream update, Rebuild against libpng 1.5 and libtiff 4.0, Remove ChangeLog, 
PKGBUILD clean up

Added:
  transfig/trunk/transfig-3.2.5d-libpng-1.5.patch
Modified:
  transfig/trunk/PKGBUILD
Deleted:
  transfig/trunk/ChangeLog

--+
 ChangeLog|   36 --
 PKGBUILD |   39 ++---
 transfig-3.2.5d-libpng-1.5.patch |   39 +
 3 files changed, 59 insertions(+), 55 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2012-01-19 01:23:02 UTC (rev 146869)
+++ ChangeLog   2012-01-19 01:34:08 UTC (rev 146870)
@@ -1,36 +0,0 @@
-2010-05-26  Jan de Groot  j...@archlinux.org
-   * transfig 3.2.5c-3
-   * Rebuilt for libpng 1.4.2, png_set_dither has been renamed
-
-2010-01-27  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5c-2
-   * Rebuilt for libpng 1.4 and libjpeg 8
-
-2010-01-11  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5c-1
-   * Upstream update
-   * Removed force option
-
-2009-08-12  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5a-1
-   * Upstream update
-   * Added force option
-
-2009-03-21  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5-2
-   * Removed uneeded stderr message (close FS#13825)
-
-2008-12-14  Eric Belanger  e...@archlinux.org
-
-   * transfig 3.2.5-1
-   * Upstream update
-   * Added arch tag
-   * Added license
-   * Added imake makedepends
-   * Added man pages
-   * Removed old patches
-   * Added ChangeLog

Modified: PKGBUILD
===
--- PKGBUILD2012-01-19 01:23:02 UTC (rev 146869)
+++ PKGBUILD2012-01-19 01:34:08 UTC (rev 146870)
@@ -1,36 +1,37 @@
 # $Id$
-# Contributor: Eric Belanger e...@archlinux.org
-# Contributor: J. Santiago Hirschfeld jsantia...@yahoo.com.ar
-# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
+# Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=transfig
-pkgver=3.2.5c
-pkgrel=3
+pkgver=3.2.5d
+pkgrel=1
 pkgdesc=Format conversion utility that can be used with xfig
 arch=('i686' 'x86_64')
 url=http://www.xfig.org;
 license=('custom')
 depends=('libpng' 'libxpm')
 makedepends=('imake')
-source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE)
-md5sums=('0cc55ed6b4ae67a3e610e501acd694f9' 'a0b2ea903821c46dbc77afefc06d1aa4')
-sha1sums=('20013b350e81400943cd91744173445d7bd4d98e' 
'b8b712871615308b8b6add92f86d218437d652f2')
+source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE \
+transfig-3.2.5d-libpng-1.5.patch)
+sha1sums=('90ff277cc9b3fa0d0313052fcf5e3ffad8652abc'
+  'b8b712871615308b8b6add92f86d218437d652f2'
+  '9f9f332b0b31e58e59542bc1568df9617b71710a')
 
 build() {
-   cd ${srcdir}/${pkgname}.${pkgver}
-   sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile || return 1
-   sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile || return 1
+  cd ${srcdir}/${pkgname}.${pkgver}
+  sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile
+  sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile
+  patch -p1 -i ../transfig-3.2.5d-libpng-1.5.patch
 
-   xmkmf || return 1
-   make FIG2DEV_LIBDIR=/usr/share/fig2dev Makefiles || return 1
-   make FIG2DEV_LIBDIR=/usr/share/fig2dev XFIGLIBDIR=/usr/share/xfig || 
return 1
+  xmkmf
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev Makefiles
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev XFIGLIBDIR=/usr/share/xfig
 }
 
 package() {
-   cd ${srcdir}/${pkgname}.${pkgver}
+  cd ${srcdir}/${pkgname}.${pkgver}
 
-   make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig \
-   FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man \
-   install install.man || return 1
-   install -Dm644 ../LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1
+  make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig \
+FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man \
+install install.man
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }

Added: transfig-3.2.5d-libpng-1.5.patch
===
--- transfig-3.2.5d-libpng-1.5.patch(rev 0)
+++ transfig-3.2.5d-libpng-1.5.patch2012-01-19 01:34:08 UTC (rev 146870)
@@ -0,0 +1,39 @@
+http://bugs.gentoo.org/show_bug.cgi?id=356751
+
+Index: transfig.3.2.5d/fig2dev/dev/readpng.c
+===
+--- transfig.3.2.5d.orig/fig2dev/dev/readpng.c
 

[arch-commits] Commit in transfig/repos (8 files)

2012-01-18 Thread Eric Bélanger
Date: Wednesday, January 18, 2012 @ 20:34:27
  Author: eric
Revision: 146871

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

Added:
  transfig/repos/staging-i686/
  transfig/repos/staging-i686/LICENSE
(from rev 146870, transfig/trunk/LICENSE)
  transfig/repos/staging-i686/PKGBUILD
(from rev 146870, transfig/trunk/PKGBUILD)
  transfig/repos/staging-i686/transfig-3.2.5d-libpng-1.5.patch
(from rev 146870, transfig/trunk/transfig-3.2.5d-libpng-1.5.patch)
  transfig/repos/staging-x86_64/
  transfig/repos/staging-x86_64/LICENSE
(from rev 146870, transfig/trunk/LICENSE)
  transfig/repos/staging-x86_64/PKGBUILD
(from rev 146870, transfig/trunk/PKGBUILD)
  transfig/repos/staging-x86_64/transfig-3.2.5d-libpng-1.5.patch
(from rev 146870, transfig/trunk/transfig-3.2.5d-libpng-1.5.patch)

-+
 staging-i686/LICENSE|   23 
 staging-i686/PKGBUILD   |   37 
 staging-i686/transfig-3.2.5d-libpng-1.5.patch   |   39 ++
 staging-x86_64/LICENSE  |   23 
 staging-x86_64/PKGBUILD |   37 
 staging-x86_64/transfig-3.2.5d-libpng-1.5.patch |   39 ++
 6 files changed, 198 insertions(+)

Copied: transfig/repos/staging-i686/LICENSE (from rev 146870, 
transfig/trunk/LICENSE)
===
--- staging-i686/LICENSE(rev 0)
+++ staging-i686/LICENSE2012-01-19 01:34:27 UTC (rev 146871)
@@ -0,0 +1,23 @@
+/*
+ * TransFig: Facility for Translating Fig code
+ * Copyright (c) 1991 by Micah Beck
+ * Parts Copyright (c) 1985-1988 by Supoj Sutanthavibul
+ *
+ * Any party obtaining a copy of these files is granted, free of charge, a
+ * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
+ * nonexclusive right and license to deal in this software and
+ * documentation files (the Software), including without limitation the
+ * rights to use, copy, modify, merge, publish and/or distribute copies of
+ * the Software, and to permit persons who receive copies from any such 
+ * party to do so, with the only requirement being that this copyright 
+ * notice remain intact.
+ *
+ */
+
+THE LAWRENCE BERKELEY NATIONAL LABORATORY DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS, IN NO EVENT SHALL THE AUTHORS 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: transfig/repos/staging-i686/PKGBUILD (from rev 146870, 
transfig/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-01-19 01:34:27 UTC (rev 146871)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=transfig
+pkgver=3.2.5d
+pkgrel=1
+pkgdesc=Format conversion utility that can be used with xfig
+arch=('i686' 'x86_64')
+url=http://www.xfig.org;
+license=('custom')
+depends=('libpng' 'libxpm')
+makedepends=('imake')
+source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE \
+transfig-3.2.5d-libpng-1.5.patch)
+sha1sums=('90ff277cc9b3fa0d0313052fcf5e3ffad8652abc'
+  'b8b712871615308b8b6add92f86d218437d652f2'
+  '9f9f332b0b31e58e59542bc1568df9617b71710a')
+
+build() {
+  cd ${srcdir}/${pkgname}.${pkgver}
+  sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile
+  sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile
+  patch -p1 -i ../transfig-3.2.5d-libpng-1.5.patch
+
+  xmkmf
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev Makefiles
+  make FIG2DEV_LIBDIR=/usr/share/fig2dev XFIGLIBDIR=/usr/share/xfig
+}
+
+package() {
+  cd ${srcdir}/${pkgname}.${pkgver}
+
+  make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig \
+FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man \
+install install.man
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: transfig/repos/staging-i686/transfig-3.2.5d-libpng-1.5.patch (from rev 
146870, transfig/trunk/transfig-3.2.5d-libpng-1.5.patch)
===
--- staging-i686/transfig-3.2.5d-libpng-1.5.patch   
(rev 0)
+++ staging-i686/transfig-3.2.5d-libpng-1.5.patch   2012-01-19 01:34:27 UTC 
(rev 146871)
@@ -0,0 +1,39 @@
+http://bugs.gentoo.org/show_bug.cgi?id=356751
+
+Index: transfig.3.2.5d/fig2dev/dev/readpng.c
+===
+--- 

[arch-commits] Commit in transfig/repos (extra-i686)

2010-05-27 Thread Jan de Groot
Date: Thursday, May 27, 2010 @ 15:13:37
  Author: jgc
Revision: 81271

db-move: transfig removed by jgc for move to extra

Deleted:
  transfig/repos/extra-i686/



[arch-commits] Commit in transfig/repos (extra-i686 testing-i686)

2010-05-27 Thread Jan de Groot
Date: Thursday, May 27, 2010 @ 15:13:38
  Author: jgc
Revision: 81272

db-move: moved transfig from [testing] to [extra] (i686)

Added:
  transfig/repos/extra-i686/
Deleted:
  transfig/repos/testing-i686/



[arch-commits] Commit in transfig/repos (extra-x86_64)

2010-05-27 Thread Jan de Groot
Date: Thursday, May 27, 2010 @ 15:14:09
  Author: jgc
Revision: 81277

db-move: transfig removed by jgc for move to extra

Deleted:
  transfig/repos/extra-x86_64/



[arch-commits] Commit in transfig/repos (extra-x86_64 testing-x86_64)

2010-05-27 Thread Jan de Groot
Date: Thursday, May 27, 2010 @ 15:14:11
  Author: jgc
Revision: 81278

db-move: moved transfig from [testing] to [extra] (x86_64)

Added:
  transfig/repos/extra-x86_64/
Deleted:
  transfig/repos/testing-x86_64/



[arch-commits] Commit in transfig/trunk (ChangeLog PKGBUILD)

2010-05-26 Thread Jan de Groot
Date: Wednesday, May 26, 2010 @ 06:19:14
  Author: jgc
Revision: 81063

upgpkg: transfig 3.2.5c-3
Rebuild for libpng update

Modified:
  transfig/trunk/ChangeLog
  transfig/trunk/PKGBUILD

---+
 ChangeLog |4 
 PKGBUILD  |2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

Modified: ChangeLog
===
--- ChangeLog   2010-05-26 10:16:20 UTC (rev 81062)
+++ ChangeLog   2010-05-26 10:19:14 UTC (rev 81063)
@@ -1,3 +1,7 @@
+2010-05-26  Jan de Groot  j...@archlinux.org
+   * transfig 3.2.5c-3
+   * Rebuilt for libpng 1.4.2, png_set_dither has been renamed
+
 2010-01-27  Eric Belanger  e...@archlinux.org
 
* transfig 3.2.5c-2

Modified: PKGBUILD
===
--- PKGBUILD2010-05-26 10:16:20 UTC (rev 81062)
+++ PKGBUILD2010-05-26 10:19:14 UTC (rev 81063)
@@ -5,7 +5,7 @@
 
 pkgname=transfig
 pkgver=3.2.5c
-pkgrel=2
+pkgrel=3
 pkgdesc=Format conversion utility that can be used with xfig
 arch=('i686' 'x86_64')
 url=http://www.xfig.org;



[arch-commits] Commit in transfig/repos (testing-i686)

2010-05-26 Thread Jan de Groot
Date: Wednesday, May 26, 2010 @ 06:19:23
  Author: jgc
Revision: 81064

archrelease: copy trunk to testing-i686

Added:
  transfig/repos/testing-i686/



[arch-commits] Commit in transfig/repos (testing-x86_64)

2010-05-26 Thread Jan de Groot
Date: Wednesday, May 26, 2010 @ 06:19:34
  Author: jgc
Revision: 81065

archrelease: copy trunk to testing-x86_64

Added:
  transfig/repos/testing-x86_64/



[arch-commits] Commit in transfig/trunk (PKGBUILD)

2010-04-11 Thread Daniel Griffiths
Date: Sunday, April 11, 2010 @ 22:25:24
  Author: dgriffiths
Revision: 77342

Adopted, move to splitpkg format

Modified:
  transfig/trunk/PKGBUILD

--+
 PKGBUILD |   26 +-
 1 file changed, 17 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-12 02:23:11 UTC (rev 77341)
+++ PKGBUILD2010-04-12 02:25:24 UTC (rev 77342)
@@ -1,6 +1,7 @@
 # $Id$
-# Maintainer: Eric Belanger e...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
 # Contributor: J. Santiago Hirschfeld jsantia...@yahoo.com.ar
+# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=transfig
 pkgver=3.2.5c
@@ -16,13 +17,20 @@
 sha1sums=('20013b350e81400943cd91744173445d7bd4d98e' 
'b8b712871615308b8b6add92f86d218437d652f2')
 
 build() {
-  cd ${srcdir}/${pkgname}.${pkgver}
-  sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile || return 1
-  sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile || return 1
+   cd ${srcdir}/${pkgname}.${pkgver}
+   sed -i 's/XCOMM USELATEX2E = -DLATEX2E/USELATEX2E = -DLATEX2E/' 
transfig/Imakefile || return 1
+   sed -i 's/XCOMM USEINLINE = -DUSE_INLINE/USEINLINE = -DUSE_INLINE/' 
fig2dev/Imakefile || return 1
 
-  xmkmf || return 1
-  make FIG2DEV_LIBDIR=/usr/share/fig2dev Makefiles || return 1
-  make FIG2DEV_LIBDIR=/usr/share/fig2dev XFIGLIBDIR=/usr/share/xfig || return 1
-  make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig 
FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man install install.man || 
return 1
-  install -D -m644 ../LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1
+   xmkmf || return 1
+   make FIG2DEV_LIBDIR=/usr/share/fig2dev Makefiles || return 1
+   make FIG2DEV_LIBDIR=/usr/share/fig2dev XFIGLIBDIR=/usr/share/xfig || 
return 1
 }
+
+package() {
+   cd ${srcdir}/${pkgname}.${pkgver}
+
+   make DESTDIR=${pkgdir} XFIGLIBDIR=/usr/share/xfig \
+   FIG2DEV_LIBDIR=/usr/share/fig2dev MANPATH=/usr/share/man \
+   install install.man || return 1
+   install -Dm644 ../LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1
+}



[arch-commits] Commit in transfig/repos (extra-i686 testing-i686)

2010-01-30 Thread Jan de Groot
Date: Saturday, January 30, 2010 @ 15:04:58
  Author: jgc
Revision: 65890

db-move: moved transfig from [testing] to [extra] (i686)

Added:
  transfig/repos/extra-i686/
Deleted:
  transfig/repos/testing-i686/



[arch-commits] Commit in transfig/repos (extra-x86_64)

2010-01-30 Thread Jan de Groot
Date: Saturday, January 30, 2010 @ 15:46:05
  Author: jgc
Revision: 66295

db-move: transfig removed by jgc for move to extra

Deleted:
  transfig/repos/extra-x86_64/



[arch-commits] Commit in transfig/repos (extra-x86_64 testing-x86_64)

2010-01-30 Thread Jan de Groot
Date: Saturday, January 30, 2010 @ 15:46:05
  Author: jgc
Revision: 66296

db-move: moved transfig from [testing] to [extra] (x86_64)

Added:
  transfig/repos/extra-x86_64/
Deleted:
  transfig/repos/testing-x86_64/



[arch-commits] Commit in transfig/repos (testing-i686)

2010-01-27 Thread Eric Bélanger
Date: Wednesday, January 27, 2010 @ 22:18:14
  Author: eric
Revision: 65340

Initialized merge tracking via svnmerge with revisions 1-65338 from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/transfig/trunk

Modified:
  transfig/repos/testing-i686/  (properties)


Property changes on: transfig/repos/testing-i686
___
Added: svnmerge-integrated
   + /transfig/trunk:1-65338



[arch-commits] Commit in transfig/repos (testing-x86_64)

2010-01-27 Thread Eric Bélanger
Date: Wednesday, January 27, 2010 @ 22:18:31
  Author: eric
Revision: 65341

archrelease: new repo testing-x86_64

Added:
  transfig/repos/testing-x86_64/



[arch-commits] Commit in transfig/trunk (ChangeLog PKGBUILD)

2010-01-11 Thread Eric Bélanger
Date: Monday, January 11, 2010 @ 12:53:30
  Author: eric
Revision: 62745

upgpkg: transfig 3.2.5c-1
Upstream update, Removed force option

Modified:
  transfig/trunk/ChangeLog
  transfig/trunk/PKGBUILD

---+
 ChangeLog |6 ++
 PKGBUILD  |7 +++
 2 files changed, 9 insertions(+), 4 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2010-01-11 17:47:49 UTC (rev 62744)
+++ ChangeLog   2010-01-11 17:53:30 UTC (rev 62745)
@@ -1,3 +1,9 @@
+2010-01-11  Eric Belanger  e...@archlinux.org
+
+   * transfig 3.2.5c-1
+   * Upstream update
+   * Removed force option
+
 2009-08-12  Eric Belanger  e...@archlinux.org
 
* transfig 3.2.5a-1

Modified: PKGBUILD
===
--- PKGBUILD2010-01-11 17:47:49 UTC (rev 62744)
+++ PKGBUILD2010-01-11 17:53:30 UTC (rev 62745)
@@ -3,7 +3,7 @@
 # Contributor: J. Santiago Hirschfeld jsantia...@yahoo.com.ar
 
 pkgname=transfig
-pkgver=3.2.5a
+pkgver=3.2.5c
 pkgrel=1
 pkgdesc=Format conversion utility that can be used with xfig
 arch=('i686' 'x86_64')
@@ -11,10 +11,9 @@
 license=('custom')
 depends=('libpng' 'libxpm')
 makedepends=('imake')
-options=('force')
 source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE)
-md5sums=('c3e4259d0b5b263baa2d8d5e811b2ef1' 'a0b2ea903821c46dbc77afefc06d1aa4')
-sha1sums=('65f772a51389be2b1cfebdb1354130aa71609739' 
'b8b712871615308b8b6add92f86d218437d652f2')
+md5sums=('0cc55ed6b4ae67a3e610e501acd694f9' 'a0b2ea903821c46dbc77afefc06d1aa4')
+sha1sums=('20013b350e81400943cd91744173445d7bd4d98e' 
'b8b712871615308b8b6add92f86d218437d652f2')
 
 build() {
   cd ${srcdir}/${pkgname}.${pkgver}



[arch-commits] Commit in transfig/repos (3 files)

2010-01-11 Thread Eric Bélanger
Date: Monday, January 11, 2010 @ 12:54:19
  Author: eric
Revision: 62747

Merged revisions 62745 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/transfig/trunk


  r62745 | eric | 2010-01-11 12:53:30 -0500 (Mon, 11 Jan 2010) | 2 lines
  
  upgpkg: transfig 3.2.5c-1
  Upstream update, Removed force option


Modified:
  transfig/repos/extra-x86_64/  (properties)
  transfig/repos/extra-x86_64/ChangeLog
  transfig/repos/extra-x86_64/PKGBUILD

---+
 ChangeLog |6 ++
 PKGBUILD  |7 +++
 2 files changed, 9 insertions(+), 4 deletions(-)


Property changes on: transfig/repos/extra-x86_64
___
Modified: svnmerge-integrated
   - /transfig/trunk:1-49590
   + /transfig/trunk:1-62746

Modified: extra-x86_64/ChangeLog
===
--- extra-x86_64/ChangeLog  2010-01-11 17:53:50 UTC (rev 62746)
+++ extra-x86_64/ChangeLog  2010-01-11 17:54:19 UTC (rev 62747)
@@ -1,3 +1,9 @@
+2010-01-11  Eric Belanger  e...@archlinux.org
+
+   * transfig 3.2.5c-1
+   * Upstream update
+   * Removed force option
+
 2009-08-12  Eric Belanger  e...@archlinux.org
 
* transfig 3.2.5a-1

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2010-01-11 17:53:50 UTC (rev 62746)
+++ extra-x86_64/PKGBUILD   2010-01-11 17:54:19 UTC (rev 62747)
@@ -3,7 +3,7 @@
 # Contributor: J. Santiago Hirschfeld jsantia...@yahoo.com.ar
 
 pkgname=transfig
-pkgver=3.2.5a
+pkgver=3.2.5c
 pkgrel=1
 pkgdesc=Format conversion utility that can be used with xfig
 arch=('i686' 'x86_64')
@@ -11,10 +11,9 @@
 license=('custom')
 depends=('libpng' 'libxpm')
 makedepends=('imake')
-options=('force')
 source=(http://downloads.sourceforge.net/mcj/${pkgname}.${pkgver}.tar.gz 
LICENSE)
-md5sums=('c3e4259d0b5b263baa2d8d5e811b2ef1' 'a0b2ea903821c46dbc77afefc06d1aa4')
-sha1sums=('65f772a51389be2b1cfebdb1354130aa71609739' 
'b8b712871615308b8b6add92f86d218437d652f2')
+md5sums=('0cc55ed6b4ae67a3e610e501acd694f9' 'a0b2ea903821c46dbc77afefc06d1aa4')
+sha1sums=('20013b350e81400943cd91744173445d7bd4d98e' 
'b8b712871615308b8b6add92f86d218437d652f2')
 
 build() {
   cd ${srcdir}/${pkgname}.${pkgver}