summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilman Klar <phoenix@gentoo.org>2002-08-26 17:52:59 +0000
committerTilman Klar <phoenix@gentoo.org>2002-08-26 17:52:59 +0000
commitd1ab863940f5f29f41aabcd26678067af94058d3 (patch)
treef5b2596918c5e6f037559b934259da20a51588ea /app-text/lout
parentfix dep on kdebase - should be ~ not >= (diff)
downloadhistorical-d1ab863940f5f29f41aabcd26678067af94058d3.tar.gz
historical-d1ab863940f5f29f41aabcd26678067af94058d3.tar.bz2
historical-d1ab863940f5f29f41aabcd26678067af94058d3.zip
Cleaned the ebuild and fixed bug 6771.
Diffstat (limited to 'app-text/lout')
-rw-r--r--app-text/lout/ChangeLog8
-rw-r--r--app-text/lout/lout-3.25-r1.ebuild38
2 files changed, 8 insertions, 38 deletions
diff --git a/app-text/lout/ChangeLog b/app-text/lout/ChangeLog
index 4f19f809645d..16e14cbe6051 100644
--- a/app-text/lout/ChangeLog
+++ b/app-text/lout/ChangeLog
@@ -1,10 +1,14 @@
# ChangeLog for app-text/lout
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/lout/ChangeLog,v 1.1 2002/07/11 06:46:28 phoenix Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/lout/ChangeLog,v 1.2 2002/08/26 17:52:59 phoenix Exp $
*lout-3.25-r1 (11 July 2002)
- 11 Jul 2002; phoen][x <phoenix@gentoo.org> ChangeLog, ytin-1.83.5.ebuild,
+ 26 Aug 2002; phoen][x <phoenix@gentoo.org> lout-3.25.ebuild :
+ Removed comments and fixed dependencies.
+ This closes bug 6771.
+
+ 11 Jul 2002; phoen][x <phoenix@gentoo.org> ChangeLog, lout-3.25.ebuild,
files/digest-lout-3.25-r1, files/lout-3.25-r1-makefile-gentoo.patch :
Initial cvs commit. Ebuild contributed by Christian V. J. Brüssow <cvjb@epost.de>.
diff --git a/app-text/lout/lout-3.25-r1.ebuild b/app-text/lout/lout-3.25-r1.ebuild
index 17426191f832..2d554cc3f913 100644
--- a/app-text/lout/lout-3.25-r1.ebuild
+++ b/app-text/lout/lout-3.25-r1.ebuild
@@ -1,32 +1,14 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# Author: Christian V. J. Brüssow <cvjb@epost.de>
-# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.25-r1.ebuild,v 1.2 2002/08/16 02:42:01 murphy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.25-r1.ebuild,v 1.3 2002/08/26 17:52:59 phoenix Exp $
-# Short one-line description of this package.
DESCRIPTION="Lout is a high-level language for document formatting."
-
-# Valeriy Ushakovs offical Lout Homepage.
HOMEPAGE="http://snark.ptc.spbu.ru/~uwe/lout/"
-
-# License of the package. This must match the name of file(s) in
-# /usr/portage/licenses/. For complex license combination see the developer
-# docs on gentoo.org for details.
LICENSE="GPL-2"
-
-# QA issues - added by phoen][x <phoenix@gentoo.org>
KEYWORDS="x86 sparc sparc64"
SLOT="0"
-
-# Build-time dependencies, such as
-# ssl? ( >=openssl-0.9.6b )
-# >=perl-5.6.1-r1
-DEPEND=">=zlib-1.1.4"
-
-# Run-time dependencies, same as DEPEND if RDEPEND isn't defined:
+DEPEND=">=sys-libs/zlib-1.1.4"
RDEPEND=""
-
-# Jeff Kingstons original site (veeery slow): ftp://ftp.cs.esyd.edu.au/jeff/.
SRC_URI="http://www.tex.ac.uk/tex-archive/support/lout/${P}.tar.gz"
src_unpack() {
@@ -38,34 +20,18 @@ src_unpack() {
}
src_compile() {
- # Lout does not have autoconf/configure support :-(
- # so everything we can do for now is the patch in src_unpack.
-
- # emake (previously known as pmake) is a script that calls the
- # standard GNU make with parallel building options for speedier
- # builds (especially on SMP systems). Try emake first. It might
- # not work for some packages, in which case you'll have to resort
- # to normal "make".
emake prg2lout lout || die "emake prg2lout lout failed"
}
src_install() {
- # You must *personally verify* that this trick doesn't install
- # anything outside of DESTDIR; do this by reading and
- # understanding the install part of the Makefiles.
emake DESTDIR=${D} install installdoc installman || die "emake install failed"
- # Again, verify the Makefiles! We don't want anything falling
- # outside of ${D}.
dodoc README READMEPDF blurb blurb.short whatsnew
}
pkg_postinst() {
- # Initializing run (should be silent, no errors expected)
/usr/bin/lout -x -s /usr/lib/lout/include/init
- # Changing mod of files just created by initializing run
chmod 644 /usr/lib/lout/data/*
chmod 644 /usr/lib/lout/hyph/*
}
-# vim:ts=4:sw=4:noexpandtab: