summaryrefslogtreecommitdiff
path: root/testing/gv
diff options
context:
space:
mode:
Diffstat (limited to 'testing/gv')
-rw-r--r--testing/gv/PKGBUILD34
-rw-r--r--testing/gv/buildfix.diff15
-rw-r--r--testing/gv/gv.desktop11
-rw-r--r--testing/gv/gv.install18
-rw-r--r--testing/gv/gv.pngbin0 -> 483 bytes
5 files changed, 78 insertions, 0 deletions
diff --git a/testing/gv/PKGBUILD b/testing/gv/PKGBUILD
new file mode 100644
index 000000000..dd32c2270
--- /dev/null
+++ b/testing/gv/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 148622 2012-02-04 13:38:01Z andyrtr $
+# Maintainer: Eric BĂ©langer <eric@archlinux.org>
+
+pkgname=gv
+pkgver=3.7.3
+pkgrel=1
+pkgdesc="A program to view PostScript and PDF documents"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/gv/"
+license=('GPL')
+depends=('xaw3d>=1.6' 'ghostscript' 'desktop-file-utils')
+install=gv.install
+source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz gv.desktop gv.png
+ buildfix.diff)
+md5sums=('98ae3e9ce338b64ba5ab622389c5960e'
+ 'cf04652952f2d0903bc7578b4826f50c'
+ 'ab0e3879dbe39e59ad1c923020c28a86'
+ '943baf7a6bb61389a09a4ec71083a900')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ # https://trac.macports.org/browser/trunk/dports/print/gv/files/patch-src-Scrollbar.c.diff?rev=89338
+ patch -Np0 -i ${srcdir}/buildfix.diff
+ sed -i -e "s:-dGraphicsAlphaBits=2:\0 -dAlignToPixels=0:" src/Makefile.{am,in}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ install -D -m644 ../gv.desktop "${pkgdir}/usr/share/applications/gv.desktop"
+ install -D -m644 ../gv.png "${pkgdir}/usr/share/pixmaps/gv.png"
+}
diff --git a/testing/gv/buildfix.diff b/testing/gv/buildfix.diff
new file mode 100644
index 000000000..76c88b158
--- /dev/null
+++ b/testing/gv/buildfix.diff
@@ -0,0 +1,15 @@
+This piece of code is from libXaw3d-1.6/src/Scrollbar.c (Line 644)
+
+http://bugs.gentoo.org/399753
+
+--- src/Scrollbar.c
++++ src/Scrollbar.c
+@@ -1006,7 +1006,7 @@
+ TOPLOC = newtop;
+ SHOWNLENGTH = newbot-newtop+1;
+
+- (*swclass->threeD_class.shadowdraw) (w, event, region, FALSE);
++ (*swclass->threeD_class.shadowdraw) (w, event, region, sbw->threeD.relief, FALSE);
+
+ ENDMESSAGE(Redisplay)
+ }
diff --git a/testing/gv/gv.desktop b/testing/gv/gv.desktop
new file mode 100644
index 000000000..6332ee859
--- /dev/null
+++ b/testing/gv/gv.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=GV
+MimeType=application/pdf;application/postscript;image/x-eps;application/illustrator
+GenericName=Postscript Viewer
+Exec=gv
+Icon=gv
+Categories=Application;Graphics;Viewer;Office;
+Type=Application
+Terminal=false
+StartupNotify=true
diff --git a/testing/gv/gv.install b/testing/gv/gv.install
new file mode 100644
index 000000000..0c048cd5b
--- /dev/null
+++ b/testing/gv/gv.install
@@ -0,0 +1,18 @@
+infodir=usr/share/info
+file=gv.info.gz
+
+post_install() {
+ update-desktop-database -q
+ [ -x usr/bin/install-info ] || return 0
+ install-info $infodir/$file $infodir/dir 2> /dev/null
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+pre_remove() {
+ update-desktop-database -q
+ [ -x usr/bin/install-info ] || return 0
+ install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+}
diff --git a/testing/gv/gv.png b/testing/gv/gv.png
new file mode 100644
index 000000000..59e832a48
--- /dev/null
+++ b/testing/gv/gv.png
Binary files differ