summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2001-08-10 22:25:17 +0000
committerDan Armak <danarmak@gentoo.org>2001-08-10 22:25:17 +0000
commit653e9094e27b396cac426285c8cc2f0643030945 (patch)
treeb50d812b455ea3b51c814604445bc7f260665901 /app-text/gv
parent*** empty log message *** (diff)
downloadhistorical-653e9094e27b396cac426285c8cc2f0643030945.tar.gz
historical-653e9094e27b396cac426285c8cc2f0643030945.tar.bz2
historical-653e9094e27b396cac426285c8cc2f0643030945.zip
finally, a new version which *should* work better than the previous ones. I disposed with patches and added a long sed transform. No need to upgrade though if your current install is a working one.
Diffstat (limited to 'app-text/gv')
-rw-r--r--app-text/gv/files/digest-gv-3.5.8-r11
-rw-r--r--app-text/gv/files/gv-3.5.8-gentoo-1.diff17
-rw-r--r--app-text/gv/files/gv-3.5.8-gentoo-2.diff14
-rw-r--r--app-text/gv/gv-3.5.8.ebuild50
4 files changed, 1 insertions, 81 deletions
diff --git a/app-text/gv/files/digest-gv-3.5.8-r1 b/app-text/gv/files/digest-gv-3.5.8-r1
new file mode 100644
index 000000000000..38f5c50f72fa
--- /dev/null
+++ b/app-text/gv/files/digest-gv-3.5.8-r1
@@ -0,0 +1 @@
+MD5 8f2f0bd97395d6cea52926ddee736da8 gv-3.5.8.tar.gz
diff --git a/app-text/gv/files/gv-3.5.8-gentoo-1.diff b/app-text/gv/files/gv-3.5.8-gentoo-1.diff
deleted file mode 100644
index f9e6a1706251..000000000000
--- a/app-text/gv/files/gv-3.5.8-gentoo-1.diff
+++ /dev/null
@@ -1,17 +0,0 @@
---- config.Unix.orig Sat Jun 7 01:00:00 1997
-+++ config.Unix Wed Jul 11 10:46:06 2001
-@@ -32,10 +32,10 @@
- XCOMM --------------------------------------------------------------------
- XCOMM Destination directories.
- XCOMM --------------------------------------------------------------------
-- GV_BINDIR = /usr/local/bin/
-- GV_DOCDIR = /usr/local/doc/gv/
-- GV_LIBDIR = /usr/local/lib/gv/
-- GV_MANDIR = /usr/local/man/man1/
-+ GV_BINDIR = /usr/bin/
-+ GV_DOCDIR = /usr/doc/gv/
-+ GV_LIBDIR = /usr/lib/gv/
-+ GV_MANDIR = /usr/man/man1/
-
- XCOMM --------------------------------------------------------------------
- XCOMM --- The name of the Xaw3d library.
diff --git a/app-text/gv/files/gv-3.5.8-gentoo-2.diff b/app-text/gv/files/gv-3.5.8-gentoo-2.diff
deleted file mode 100644
index 98e60ffea6d4..000000000000
--- a/app-text/gv/files/gv-3.5.8-gentoo-2.diff
+++ /dev/null
@@ -1,14 +0,0 @@
---- source/Makefile Wed Aug 8 15:52:11 2001
-+++ source/Makefile Wed Aug 8 15:53:59 2001
-@@ -1003,10 +1003,9 @@
- else (set -x; $(MKDIRHIER) $(DESTDIR)$(GV_BINDIR)); fi
- $(INSTALL) $(INSTALLFLAGS) $(INSTPGMFLAGS) gv $(DESTDIR)$(GV_BINDIR)/gv
-
--install.man:: gv.man
-+install.man::
- @if [ -d $(DESTDIR)$(MANDIR) ]; then set +x; \
- else (set -x; $(MKDIRHIER) $(DESTDIR)$(MANDIR)); fi
-- $(INSTALL) $(INSTALLFLAGS) $(INSTMANFLAGS) gv.man $(DESTDIR)$(MANDIR)/gv.$(MANSUFFIX)
-
- depend::
- $(DEPEND) $(DEPENDFLAGS) -- $(ALLDEFINES) $(DEPEND_DEFINES) -- $(SRCS)
diff --git a/app-text/gv/gv-3.5.8.ebuild b/app-text/gv/gv-3.5.8.ebuild
deleted file mode 100644
index a315147cf16e..000000000000
--- a/app-text/gv/gv-3.5.8.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2001 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Dan Armak <danarmak@gentoo.org>
-# /home/cvsroot/gentoo-x86/skel.build,v 1.3 2001/07/05 02:43:36 drobbins Exp
-
-S=${WORKDIR}/${P}
-
-DESCRIPTION="gv is a standard ghostscript frontend used e.g. by LyX"
-
-SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/gv/unix/${P}.tar.gz"
-HOMEPAGE="http://wwwthep.physik.uni-mainz.de/~plass/gv/"
-
-# There's probably more, but ghostscript also depends on it,
-# so I can't identify it
-DEPEND="virtual/x11 x11-libs/Xaw3d app-text/ghostscript"
-
-src_unpack() {
-
- # need to check if this can be done automatically
-
- unpack ${P}.tar.gz
- cd ${S}
- patch -p0 <${FILESDIR}/${P}-gentoo-1.diff
-
-}
-
-src_compile() {
-
- cd ${S}
-
- # emake may not work
- try xmkmf
- try make Makefiles
-
- patch -p0 <${FILESDIR}/${P}-gentoo-2.diff
-
- try make
-
-}
-
-src_install () {
-
- cd ${S}
- try make DESTDIR=${D} install
- try make DESTDIR=${D} install.man
- try make DESTDIR=${D} install.doc
- gzip ${D}/usr/man/man1/gv.1x
-
-}
-