[arch-commits] Commit in graphviz/repos (4 files)
Felix Yan
felixonmars at archlinux.org
Mon Nov 9 11:21:08 UTC 2020
Date: Monday, November 9, 2020 @ 11:21:08
Author: felixonmars
Revision: 399668
archrelease: copy trunk to staging-x86_64
Added:
graphviz/repos/staging-x86_64/
graphviz/repos/staging-x86_64/PKGBUILD
(from rev 399667, graphviz/trunk/PKGBUILD)
graphviz/repos/staging-x86_64/ghostscript918.patch
(from rev 399667, graphviz/trunk/ghostscript918.patch)
graphviz/repos/staging-x86_64/install
(from rev 399667, graphviz/trunk/install)
----------------------+
PKGBUILD | 60 +++++++++++++++++++++++++++++++++++++++++++++++++
ghostscript918.patch | 18 ++++++++++++++
install | 12 +++++++++
3 files changed, 90 insertions(+)
Copied: graphviz/repos/staging-x86_64/PKGBUILD (from rev 399667, graphviz/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-09 11:21:08 UTC (rev 399668)
@@ -0,0 +1,60 @@
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: kevin <kevin at archlinux.org>
+# Contributor: John Proctor <jproctor at prium.net>
+
+pkgname=graphviz
+pkgver=2.44.1
+pkgrel=5
+pkgdesc='Graph visualization software'
+url='https://www.graphviz.org/'
+license=('EPL')
+arch=('x86_64')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 'gsfonts' 'libnsl' 'libpng')
+makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml>=4.11.0' 'perl' 'python' 'r' 'tk' 'qt5-base' 'gtk2' 'git')
+optdepends=('mono: sharp bindings'
+ 'guile: guile bindings'
+ 'lua: lua bindings'
+ 'ocaml: ocaml bindings'
+ 'perl: perl bindings'
+ 'python: python bindings'
+ 'r: r bindings'
+ 'tcl: tcl bindings'
+ 'qt5-base: gvedit'
+ 'gtk2: gtk output plugin'
+ 'xterm: vimdot')
+source=("https://www2.graphviz.org/Packages/stable/portable_source/graphviz-${pkgver}.tar.gz"
+ 'ghostscript918.patch')
+sha256sums=('8e1b34763254935243ccdb83c6ce108f531876d7a5dfd443f255e6418b8ea313'
+ '0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
+
+install=install
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -p1 -i ../ghostscript918.patch
+ ./autogen.sh NOCONFIG
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ export LIBPOSTFIX=/
+ export CXXFLAGS+=' -fPIC -fpermissive'
+
+ ./configure --prefix=/usr \
+ --enable-python3=yes --disable-python
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+
+ # fix symlink to symlink that doesn't get picked up by makepkg's zipman
+ ln -s gv2gxl.1.gz "${pkgdir}"/usr/share/man/man1/dot2gxl.1.gz
+ rm "${pkgdir}"/usr/share/man/man1/dot2gxl.1
+
+ # Deduplicates TCL libraries
+ cd "${pkgdir}/usr/lib/tcl8.6"
+ rm -fr graphviz
+ ln -s ../graphviz/tcl graphviz
+}
Copied: graphviz/repos/staging-x86_64/ghostscript918.patch (from rev 399667, graphviz/trunk/ghostscript918.patch)
===================================================================
--- staging-x86_64/ghostscript918.patch (rev 0)
+++ staging-x86_64/ghostscript918.patch 2020-11-09 11:21:08 UTC (rev 399668)
@@ -0,0 +1,18 @@
+diff -uprb graphviz-2.38.0.orig/plugin/gs/gvloadimage_gs.c graphviz-2.38.0/plugin/gs/gvloadimage_gs.c
+--- graphviz-2.38.0.orig/plugin/gs/gvloadimage_gs.c 2014-04-13 23:40:25.000000000 +0300
++++ graphviz-2.38.0/plugin/gs/gvloadimage_gs.c 2015-11-11 00:08:32.916123704 +0200
+@@ -72,11 +72,11 @@ static void gs_error(GVJ_t * job, const
+
+ assert (err < 0);
+
+- if (err >= e_VMerror)
++ if (err >= gs_error_VMerror)
+ errsrc = "PostScript Level 1";
+- else if (err >= e_unregistered)
++ else if (err >= gs_error_unregistered)
+ errsrc = "PostScript Level 2";
+- else if (err >= e_invalidid)
++ else if (err >= gs_error_invalidid)
+ errsrc = "DPS error";
+ else
+ errsrc = "Ghostscript internal error";
Copied: graphviz/repos/staging-x86_64/install (from rev 399667, graphviz/trunk/install)
===================================================================
--- staging-x86_64/install (rev 0)
+++ staging-x86_64/install 2020-11-09 11:21:08 UTC (rev 399668)
@@ -0,0 +1,12 @@
+post_install() {
+ rm -f usr/lib/graphviz/config{,6}
+ usr/bin/dot -c
+}
+
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ rm -f usr/lib/graphviz/config{,6}
+}
More information about the arch-commits
mailing list