blob: 61f4f2ed9f929528603f4d5a197298a4027ebd5a (
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
|
# 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/a2ps/a2ps-4.13b-r3.ebuild,v 1.2 2001/06/03 09:54:22 achim Exp $
P=a2ps-4.13b
A=${P}.tar.gz
S=${WORKDIR}/a2ps-4.13
DESCRIPTION="a2ps is an Any to PostScript filter"
SRC_URI="ftp://ftp.enst.fr/pub/unix/a2ps/"${A}
HOMEPAGE="http://www-inf.enst.fr/~demaille/a2ps"
DEPEND="virtual/glibc
nls? ( sys-devel/gettext )
>=app-text/ghostscript-6.23
>=app-text/psutils-1.17
tex? ( >=app-text/tetex-1.0.7 )"
RDEPEND="virtual/glibc
>=app-text/ghostscript-6.23
>=app-text/psutils-1.17
tex? ( >=app-text/tetex-1.0.7 )"
src_compile() {
local myconf
if [ -z "`use nls`" ]
then
myconf="--disable-nls"
fi
try ./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/a2ps \
--mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-static \
${myconf}
try make
}
src_install() {
dodir /usr/share/emacs/site-lisp
try make prefix=${D}/usr sysconfdir=${D}/etc/a2ps \
mandir=${D}/usr/share/man infodir=${D}/usr/share/info \
lispdir=${D}/usr/share/emacs/site-lisp install
dodoc ANNOUNCE AUTHORS ChangeLog COPYING FAQ NEWS README THANKS TODO
}
|