blob: 2ae9a3af718c561902d21609949aec0b804fa8d7 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.25-r1.ebuild,v 1.10 2004/06/06 15:58:17 usata Exp $
inherit eutils
DESCRIPTION="high-level language for document formatting"
HOMEPAGE="http://snark.ptc.spbu.ru/~uwe/lout/"
SRC_URI="http://www.tex.ac.uk/tex-archive/support/lout/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc"
DEPEND=">=sys-libs/zlib-1.1.4"
RDEPEND=""
src_unpack() {
unpack ${A}
cd ${S}
# Apply the makefile patch, this is the only configuration so far :-(
epatch ${FILESDIR}/${PF}-makefile-gentoo.patch
}
src_compile() {
emake prg2lout lout || die "emake prg2lout lout failed"
}
src_install() {
emake DESTDIR=${D} install installdoc installman || die "emake install failed"
dodoc README READMEPDF blurb blurb.short whatsnew
}
pkg_postinst() {
/usr/bin/lout -x -s /usr/lib/lout/include/init
chmod 644 /usr/lib/lout/data/*
chmod 644 /usr/lib/lout/hyph/*
}
|