blob: fa1100da47ff9c5dcde20b0aa89cc8c8c2b27cc4 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-text/enscript/enscript-1.6.3-r1.ebuild,v 1.4 2002/08/02 17:42:49 phoenix Exp $
S=${WORKDIR}/${P}
SRC_URI="http://www.iki.fi/mtr/genscript/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/enscript/enscript.html"
KEYWORDS="x86"
SLOT="0"
LICENSE="GPL-2"
DESCRIPTION="GNU's enscript is a powerful text-to-postsript converter"
DEPEND="sys-devel/flex
sys-devel/bison
nls? ( sys-devel/gettext )"
RDEPEND="nls? ( sys-devel/gettext )"
src_compile() {
local myopts
if [ -z "`use nls`" ]
then
myopts="--disable-nls"
else
myopts="--enable-nls"
fi
./configure --host=${CHOST} \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--sysconfdir=/etc \
${myopts}
assert
emake || die
}
src_install () {
make prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
sysconfdir=${D}/etc \
install || die
dodoc AUTHORS COPYING ChangeLog FAQ.html NEWS README* THANKS TODO
}
pkg_postinst() {
echo "
Now, customize /etc/enscript.cfg.
"
}
|