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

Eric Bélanger eric at archlinux.org
Mon Sep 12 05:31:27 UTC 2011


    Date: Monday, September 12, 2011 @ 01:31:26
  Author: eric
Revision: 137872

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

Added:
  pstoedit/repos/testing-x86_64/
  pstoedit/repos/testing-x86_64/PKGBUILD
    (from rev 137860, pstoedit/repos/staging-x86_64/PKGBUILD)
  pstoedit/repos/testing-x86_64/pstoedit-3.50-parallel.patch
    (from rev 137860, pstoedit/repos/staging-x86_64/pstoedit-3.50-parallel.patch)
  pstoedit/repos/testing-x86_64/pstoedit-3.50-plugin-close.patch
    (from rev 137860, pstoedit/repos/staging-x86_64/pstoedit-3.50-plugin-close.patch)
Deleted:
  pstoedit/repos/staging-x86_64/

----------------------------------+
 PKGBUILD                         |   34 ++++++++++++++++++++++++++
 pstoedit-3.50-parallel.patch     |   47 +++++++++++++++++++++++++++++++++++++
 pstoedit-3.50-plugin-close.patch |   14 +++++++++++
 3 files changed, 95 insertions(+)

Copied: pstoedit/repos/testing-x86_64/PKGBUILD (from rev 137860, pstoedit/repos/staging-x86_64/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2011-09-12 05:31:26 UTC (rev 137872)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+# Contributor: Tobias Powalowski <t.powa at gmx.de>
+
+pkgname=pstoedit
+pkgver=3.60
+pkgrel=2
+pkgdesc="Translates PostScript and PDF graphics into other vector formats"
+arch=('i686' 'x86_64')
+url="http://www.pstoedit.net/"
+license=('GPL')
+depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
+makedepends=('ghostscript')
+options=('!libtool' '!makeflags')
+source=("http://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz"
+	'pstoedit-3.50-parallel.patch'	'pstoedit-3.50-plugin-close.patch')
+sha1sums=('649ade3d873429548eb6dd9f3e13cb79a8d6a1a2'
+          '6e278b164d3e59fbb11e7fd5ae8ffb038932d69a'
+          '54bbe019de66eb4cb8525371462595d21fbd074e')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  sed -i 's/-pedantic//' configure
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: pstoedit/repos/testing-x86_64/pstoedit-3.50-parallel.patch (from rev 137860, pstoedit/repos/staging-x86_64/pstoedit-3.50-parallel.patch)
===================================================================
--- testing-x86_64/pstoedit-3.50-parallel.patch	                        (rev 0)
+++ testing-x86_64/pstoedit-3.50-parallel.patch	2011-09-12 05:31:26 UTC (rev 137872)
@@ -0,0 +1,47 @@
+diff --git a/src/Makefile.am b/src/Makefile.am
+index d6178df..66f377b 100755
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -86,6 +86,7 @@ libp2edrvstd_la_SOURCES=			\
+         $(sample_drivers_src)                   
+ libp2edrvstd_la_LIBADD=-L. libpstoedit.la
+ libp2edrvstd_la_LDFLAGS=-no-undefined -module
++libp2edrvstd_la_DEPENDENCIES = libpstoedit.la
+ 
+ #libp2edrvplugins_la_SOURCES=drvmif.cpp drvcgm.cpp drvrtf.cpp drvwwmf.cpp
+ #libp2edrvplugins_la_LIBADD=
+@@ -95,15 +96,18 @@ libp2edrvstd_la_LDFLAGS=-no-undefined -module
+ libp2edrvlplot_la_SOURCES=drvlplot.cpp drvlplot.h initlibrary.cpp
+ libp2edrvlplot_la_LIBADD=$(LIBPLOTTER_LDFLAGS) -L. libpstoedit.la
+ libp2edrvlplot_la_LDFLAGS=-no-undefined -module
++libp2edrvlplot_la_DEPENDENCIES = libpstoedit.la
+ 
+ libp2edrvswf_la_SOURCES=drvswf.cpp drvswf.h initlibrary.cpp
+ libp2edrvswf_la_LIBADD=$(LIBMING_LDFLAGS) -L. libpstoedit.la
+ libp2edrvswf_la_LDFLAGS=-no-undefined -module
++libp2edrvswf_la_DEPENDENCIES = libpstoedit.la
+ 
+ # note the __ stand for ++ - automake treats all no alphanums chars as _
+ libp2edrvmagick___la_SOURCES=drvmagick++.cpp drvmagick++.h initlibrary.cpp
+ libp2edrvmagick___la_LIBADD=-L. libpstoedit.la
+ libp2edrvmagick___la_LDFLAGS=-no-undefined ${LIBMAGICK_LDFLAGS}  -module
++libp2edrvmagick___la_DEPENDENCIES = libpstoedit.la
+ # moved to configure.ac because needed only for g++ libp2edrvmagick___la_CPPFLAGS=$(LIBMAGICK_CFLAGS) $(AM_CPPFLAGS) -Wno-long-long
+ 
+ if USE_EMFBYSOURCE
+@@ -113,6 +117,7 @@ else
+ libp2edrvwmf_la_SOURCES=drvwmf.cpp drvwmf.h initlibrary.cpp
+ libp2edrvwmf_la_LDFLAGS=-no-undefined $(LIBEMF_LDFLAGS) -L. libpstoedit.la -module
+ endif
++libp2edrvwmf_la_DEPENDENCIES = libpstoedit.la
+ 
+ libpstoedit_la_SOURCES =			\
+ 	dynload.cpp dynload.h			\
+@@ -135,6 +140,7 @@ libpstoedit_la_LDFLAGS = -no-undefined
+ 
+ pstoedit_SOURCES = cmdmain.cpp
+ pstoedit_LDFLAGS = -no-undefined -L. libpstoedit.la ${LIBLD_LDFLAGS}
++pstoedit_DEPENDENCIES = libpstoedit.la
+ 
+ pkginclude_HEADERS =				\
+ 	pstoedit.h				\

Copied: pstoedit/repos/testing-x86_64/pstoedit-3.50-plugin-close.patch (from rev 137860, pstoedit/repos/staging-x86_64/pstoedit-3.50-plugin-close.patch)
===================================================================
--- testing-x86_64/pstoedit-3.50-plugin-close.patch	                        (rev 0)
+++ testing-x86_64/pstoedit-3.50-plugin-close.patch	2011-09-12 05:31:26 UTC (rev 137872)
@@ -0,0 +1,14 @@
+http://bugzilla.redhat.com/507035
+
+diff --git a/src/dynload.cpp b/src/dynload.cpp
+index c0db355..7c073ef 100644
+--- a/src/dynload.cpp
++++ b/src/dynload.cpp
+@@ -147,7 +147,6 @@ void DynLoader::close()
+ 
+ DynLoader::~DynLoader()
+ {
+-	close();
+ 	libname=0;
+ }
+ 




More information about the arch-commits mailing list