diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-12-16 04:38:16 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-12-16 04:38:16 +0000 |
commit | a7166e6e375e8e579716007dc6f7b372653bf0e8 (patch) | |
tree | cc499741b2106d50b2cfa4b1644add31dae6f51d /app-text/lout/lout-3.30.ebuild | |
parent | get_libdir love for multilib archs. (Manifest recommit) (diff) | |
download | gentoo-2-a7166e6e375e8e579716007dc6f7b372653bf0e8.tar.gz gentoo-2-a7166e6e375e8e579716007dc6f7b372653bf0e8.tar.bz2 gentoo-2-a7166e6e375e8e579716007dc6f7b372653bf0e8.zip |
Version bumped. This closes bug #74284. Marked 3.29 stable on x86 and ppc.
Diffstat (limited to 'app-text/lout/lout-3.30.ebuild')
-rw-r--r-- | app-text/lout/lout-3.30.ebuild | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/app-text/lout/lout-3.30.ebuild b/app-text/lout/lout-3.30.ebuild new file mode 100644 index 000000000000..eb687be30be7 --- /dev/null +++ b/app-text/lout/lout-3.30.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.30.ebuild,v 1.1 2004/12/16 04:38:16 usata Exp $ + +IUSE="zlib doc" + +DESCRIPTION="high-level language for document formatting" +HOMEPAGE="http://lout.sourceforge.net/" +SRC_URI="mirror://sourceforge/lout/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" + +DEPEND="zlib? ( >=sys-libs/zlib-1.1.4 )" + +src_compile() { + local myconf + use zlib && myconf="$myconf PDF_COMPRESSION=1 ZLIB=/usr/lib/libz.a" + emake BINDIR=/usr/bin \ + LIBDIR=/usr/share/lout \ + DOCDIR=/usr/share/doc/${P} \ + MANDIR=/usr/share/man/man1 \ + ${myconf} lout prg2lout || die "emake prg2lout lout failed" +} + +compile_doc() { + # + # SYNOPSIS: compile_doc file times + # + + einfo "${1}:" + # yes, it *is* necessary to run this 6 times... + for i in $(seq 1 $(expr $2 - 1)) ; do + einfo " pass $i" + lout all -o ${docdir}/$1 -e /dev/null + done + # in the last one, let errors be reported + einfo " final pass" + lout all -o ${docdir}/$1 || die "final pass failed" +} + +src_install() { + local bindir libdir docdir mandir + bindir=${D}/usr/bin + libdir=${D}/usr/share/lout + docdir=${D}/usr/share/doc/${P} + mandir=${D}/usr/share/man/man1 + export LOUTLIB=${libdir} + export PATH="${bindir}:${PATH}" + + mkdir -p ${bindir} ${docdir} ${mandir} + + make BINDIR=${bindir} \ + LIBDIR=${libdir} \ + DOCDIR=${docdir} \ + MANDIR=${mandir} \ + install installdoc installman || die "make install failed" + + lout -x -s ${D}/usr/share/lout/include/init || die "lout init failed" + + mv ${docdir}/README{,.docs} + dodoc README READMEPDF blurb blurb.short whatsnew + + if use doc ; then + einfo "building postscript documentation (may take a while)" + cd doc/user + compile_doc user.ps 6 + cd ../design + compile_doc design.ps 3 + cd ../expert + compile_doc expert.ps 4 + cd ../slides + compile_doc slides.ps 2 + fi +} |