blob: ce0c9747d3b4ff2eed1e97545fcb4944d217a7f9 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/a2ps-4.13b-r3.ebuild,v 1.9 2002/10/05 05:39:09 drobbins Exp $
IUSE="nls tetex"
S=${WORKDIR}/${P/b/}
DESCRIPTION="a2ps is an Any to PostScript filter"
SRC_URI="ftp://ftp.enst.fr/pub/unix/a2ps/${P}.tar.gz"
HOMEPAGE="http://www-inf.enst.fr/~demaille/a2ps"
DEPEND=">=app-text/ghostscript-6.23
>=app-text/psutils-1.17
tetex? ( >=app-text/tetex-1.0.7 )"
RDEPEND="${DEPEND}
nls? ( sys-devel/gettext )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc sparc64"
src_compile() {
local myconf
use nls || myconf="--disable-nls"
myconf="${myconf} --sysconfdir=/etc/a2ps"
econf ${myconf} || die "configure failed"
emake || die
}
src_install() {
dodir /usr/share/emacs/site-lisp
make \
prefix=${D}/usr \
datadir=${D}/usr/share/a2ps \
sysconfdir=${D}/etc/a2ps \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
lispdir=${D}/usr/share/emacs/site-lisp \
install || die
dodoc ANNOUNCE AUTHORS ChangeLog COPYING FAQ NEWS README THANKS TODO
}
|