blob: 78d447700cc9a454b4d696f84c144cf7e64dc5ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Andreas Voegele <voegelas@users.sourceforge.net>
# Maintainer: Mikael Hallendal <hallski@gentoo.org>
# /home/cvsroot/gentoo-x86/skel.build,v 1.9 2001/10/21 16:17:12 agriffis Exp
S=${WORKDIR}/${P}
DESCRIPTION="A PostScript viewer for X11"
SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/ghostview/"
DEPEND="virtual/glibc
virtual/x11"
RDEPEND="${DEPEND}
>=app-text/ghostscript-6.50-r2"
src_unpack() {
unpack ${A}
# This patch contains all the Debian patches and enables anti-aliasing.
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff
}
src_compile() {
PATH=/usr/X11R6/bin:${PATH} # root doesn't get this by default
xmkmf -a || die
cp Makefile Makefile.old
sed -e "s,all:: ghostview.\$(MANSUFFIX).html,all:: ,g" Makefile.old > Makefile
emake || die
}
src_install() {
dobin ghostview
newman ghostview.man ghostview.1
insinto /etc/X11/app-defaults
newins Ghostview.ad Ghostview
dodoc COPYING HISTORY README comments.doc
}
|