blob: 4490286d1a9de6fd2d8eab931b682f65ae7606c4 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ghostscript-6.31.ebuild,v 1.4 2000/12/11 18:05:42 achim Exp $
GPV="4.0.4"
A="${P}.tar.gz ghostscript-fonts-std-6.0.tar.gz print-${GPV}.tar.gz"
A1=jpegsrc.v6b.tar.gz
A2=zlib-1.1.3.tar.gz
A3=libpng-1.0.8.tar.gz
S=${WORKDIR}/gs${PV}
DESCRIPTION="Aladin Ghostscript"
SRC_URI="http://download.sourceforge.net/ghostscript/${P}.tar.gz
http://download.sourceforge.net/gs-fonts/ghostscript-fonts-std-6.0.tar.gz
http://download.sourceforge.net/gimp-print/print-${GPV}.tar.gz
http://www.libpng.org/pub/png/src/${A3}
ftp://ftp.freesoftware.com/pub/infozip/zlib/${A2}
ftp://ftp.uu.net/graphics/jpeg/${A1}"
DEPEND=">=sys-apps/bash-2.04
>=sys-libs/glibc-2.1.3
>=media-libs/libpng-1.0.7
>=x11-base/xfree-4.0.1"
src_unpack() {
unpack ${A}
cd ${S}
mkdir zlib
cd zlib
unpack ${A2}
cd ..
mkdir jpeg
cd jpeg
unpack ${A1}
cd ..
mkdir libpng
cd libpng
unpack ${A3}
cd ../src
cp ${O}/files/all-arch.mak all-arch.mak
cd ${WORKDIR}/print-${GPV}/Ghost
cp *.c *.h ${S}/src
cat contrib.mak.addon >> ${S}/src/contrib.mak
cd ${S}/src
cp unix-gcc.mak unix-gcc.mak.orig
sed -e "s:^DEVICE_DEVS6=:DEVICE_DEVS6=\$\(DD\)stp\.dev :" \
unix-gcc.mak.orig > unix-gcc.mak
}
src_compile() {
cd ${S}/src
cp all-arch.mak all-arch.mak.orig
sed -e "s:^SRCDIR.*:SRCDIR = ${S}:" all-arch.mak.orig > all-arch.mak
cp unix-gcc.mak unix-gcc.mak.orig
sed -e "s:-O2:${CFLAGS}:" unix-gcc.mak.orig > unix-gcc.mak
cd ..
try make -f src/all-arch.mak linux prefix=/usr
cd ${WORKDIR}/print-${GPV}/Ghost
try make
}
src_install() {
cd ${S}
dobin bin/gs
try make -f src/all-arch.mak prefix=${D}/usr BINDIR=${D}/usr/bin install
cd ${WORKDIR}
cp -a fonts ${D}/usr/share/ghostscript
cd ${S}
dodir /usr/doc/${PF}
rm -rf ${D}/usr/share/ghostscript/${PV}/doc
dodoc doc/README doc/PUBLIC
docinto html
dodoc doc/*.html doc/*.htm
insinto /usr/share/emacs/site-lisp
doins doc/gsdoc.el
cd ${WORKDIR}/print-${GPV}/Ghost
dobin escputil
docinto stp
dodoc README* COPYING ChangeLog
cp -a stp-interface ${D}/usr/doc/${P}/stp
}
|