summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Wendel <lanius@gentoo.org>2004-09-22 12:44:00 +0000
committerHeinrich Wendel <lanius@gentoo.org>2004-09-22 12:44:00 +0000
commit022838f1800801249b23dc905a26027e24fed063 (patch)
treef4169a2d44a7898bf49440ab055be81589680389 /app-text/gsview
parentstable on amd64 (diff)
downloadhistorical-022838f1800801249b23dc905a26027e24fed063.tar.gz
historical-022838f1800801249b23dc905a26027e24fed063.tar.bz2
historical-022838f1800801249b23dc905a26027e24fed063.zip
version bump, bug #62062
Diffstat (limited to 'app-text/gsview')
-rw-r--r--app-text/gsview/ChangeLog7
-rw-r--r--app-text/gsview/Manifest4
-rw-r--r--app-text/gsview/files/digest-gsview-4.61
-rw-r--r--app-text/gsview/gsview-4.6.ebuild46
4 files changed, 56 insertions, 2 deletions
diff --git a/app-text/gsview/ChangeLog b/app-text/gsview/ChangeLog
index e196f4e5b206..bf87a4ddb7f3 100644
--- a/app-text/gsview/ChangeLog
+++ b/app-text/gsview/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/gsview
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/gsview/ChangeLog,v 1.5 2004/06/24 22:37:53 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/gsview/ChangeLog,v 1.6 2004/09/22 12:44:00 lanius Exp $
+
+*gsview-4.6 (22 Sep 2004)
+
+ 22 Sep 2004; Heinrich Wendel <lanius@gentoo.org> +gsview-4.6.ebuild:
+ version bump, bug #62062
07 May 2004; Heinrich Wendel <lanius@gentoo.org> gsview-4.5.ebuild:
mark x86
diff --git a/app-text/gsview/Manifest b/app-text/gsview/Manifest
index 06c33eb85de4..a43d434684e2 100644
--- a/app-text/gsview/Manifest
+++ b/app-text/gsview/Manifest
@@ -1,4 +1,6 @@
+MD5 99cebd2f2bb6fa8a2abad30918ad5c01 gsview-4.6.ebuild 1012
MD5 fe6f20aafa59cd9fedcbecd3fc876645 gsview-4.5.ebuild 1013
-MD5 5a8cfa67f49a493a95c954b597fbe0d5 ChangeLog 585
+MD5 078d8a0f4812a68c277024eef164fc90 ChangeLog 709
MD5 26b4b081d538c195dc39bcb2ec8e6f3a metadata.xml 161
MD5 0b2550f8e3ba26036407ffaa0ff893cb files/digest-gsview-4.5 58
+MD5 43585e75c85371fbcda163c65204c228 files/digest-gsview-4.6 58
diff --git a/app-text/gsview/files/digest-gsview-4.6 b/app-text/gsview/files/digest-gsview-4.6
new file mode 100644
index 000000000000..10e2dcec0e15
--- /dev/null
+++ b/app-text/gsview/files/digest-gsview-4.6
@@ -0,0 +1 @@
+MD5 6fc65d4b2acff0eb3a5cfb893662ab78 gsv46src.zip 1479984
diff --git a/app-text/gsview/gsview-4.6.ebuild b/app-text/gsview/gsview-4.6.ebuild
new file mode 100644
index 000000000000..f4eafe3a6aa8
--- /dev/null
+++ b/app-text/gsview/gsview-4.6.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/gsview/gsview-4.6.ebuild,v 1.1 2004/09/22 12:44:00 lanius Exp $
+
+MY_PV="${PV/.}"
+DESCRIPTION="gsView PostScript and PDF viewer"
+SRC_URI="ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/ghostgum/gsv${MY_PV}src.zip"
+HOMEPAGE="http://www.cs.wisc.edu/~ghost/gsview/"
+
+IUSE="doc"
+SLOT="0"
+LICENSE="Aladdin"
+KEYWORDS="~x86"
+
+RDEPEND="=x11-libs/gtk+-1.2*
+ app-text/ghostscript-afpl"
+
+src_compile() {
+ ## copy Unix makefile
+ ln -s srcunx/unx.mak Makefile
+
+ ## respect CFLAGS
+ sed -i -e "s:^CFLAGS=-O :CFLAGS=${CFLAGS} :g" Makefile
+
+ ## run Makefile
+ make || die "Error compiling files."
+}
+
+src_install() {
+ dobin bin/gsview bin/epstool
+
+ insinto /usr/share/applications
+ newins srcunx/gvxhelp.txt gview
+
+ doman srcunx/gsview.1
+
+ dodoc gsview.css cdorder.txt regorder.txt LICENCE
+
+ if use doc
+ then
+ dohtml *.htm bin/*.htm
+ fi
+
+ insinto /etc/gsview
+ doins src/printer.ini
+}