summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-08-18 13:47:32 +0000
committerMamoru Komachi <usata@gentoo.org>2004-08-18 13:47:32 +0000
commit9d1a859a42195eaad39509266595aad086792510 (patch)
treef5966d12f4619863a774954ece2a0dacdbe0afa5 /dev-tex/lgrind
parentgst-plugins update (diff)
downloadhistorical-9d1a859a42195eaad39509266595aad086792510.tar.gz
historical-9d1a859a42195eaad39509266595aad086792510.tar.bz2
historical-9d1a859a42195eaad39509266595aad086792510.zip
Install missing lgrind.sty. Thanks to Kevin Kress <kkress-gentoo@myslo.com> and Steingrim Dovland <steingrd@ifi.uio.no>. This closes bug #57045.
Diffstat (limited to 'dev-tex/lgrind')
-rw-r--r--dev-tex/lgrind/ChangeLog8
-rw-r--r--dev-tex/lgrind/Manifest6
-rw-r--r--dev-tex/lgrind/files/digest-lgrind-3.67-r21
-rw-r--r--dev-tex/lgrind/lgrind-3.67-r2.ebuild44
4 files changed, 56 insertions, 3 deletions
diff --git a/dev-tex/lgrind/ChangeLog b/dev-tex/lgrind/ChangeLog
index dd4e4f1182ec..5d2c1c08d04b 100644
--- a/dev-tex/lgrind/ChangeLog
+++ b/dev-tex/lgrind/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-tex/lgrind
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/lgrind/ChangeLog,v 1.7 2004/06/25 02:16:00 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/lgrind/ChangeLog,v 1.8 2004/08/18 13:47:32 usata Exp $
+
+*lgrind-3.67-r2 (18 Aug 2004)
+
+ 18 Aug 2004; Mamoru KOMACHI <usata@gentoo.org> +lgrind-3.67-r2.ebuild:
+ Install missing lgrind.sty. Thanks to Kevin Kress <kkress-gentoo@myslo.com>
+ and Steingrim Dovland <steingrd@ifi.uio.no>. This closes bug #57045.
16 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> lgrind-3.67-r1.ebuild:
Added ~sparc, bug #53552
diff --git a/dev-tex/lgrind/Manifest b/dev-tex/lgrind/Manifest
index f6d2f11237d2..635a4b8b0a82 100644
--- a/dev-tex/lgrind/Manifest
+++ b/dev-tex/lgrind/Manifest
@@ -1,5 +1,7 @@
-MD5 70f4d4275efec40edccfbaa365589d3a lgrind-3.67-r1.ebuild 939
-MD5 db5c6ba0b19cab379bffc614ff2c3099 ChangeLog 1103
+MD5 4af869ae0bc2d75651a08c803fdbf08b ChangeLog 1354
MD5 c472f5fd1646eb8bca71d8df5cb2bdcc metadata.xml 164
+MD5 70f4d4275efec40edccfbaa365589d3a lgrind-3.67-r1.ebuild 939
+MD5 eaf016773a1d7474329f62d49150bbca lgrind-3.67-r2.ebuild 937
MD5 9bfe54e8057c2b3b05c871878396d6c3 files/99lgrind 52
MD5 13c9a4bcc670c1e8eef9a40d0768694c files/digest-lgrind-3.67-r1 57
+MD5 13c9a4bcc670c1e8eef9a40d0768694c files/digest-lgrind-3.67-r2 57
diff --git a/dev-tex/lgrind/files/digest-lgrind-3.67-r2 b/dev-tex/lgrind/files/digest-lgrind-3.67-r2
new file mode 100644
index 000000000000..e029dda14af4
--- /dev/null
+++ b/dev-tex/lgrind/files/digest-lgrind-3.67-r2
@@ -0,0 +1 @@
+MD5 650e14f7b9f098854aa10ef0f49712f7 lgrind.tar.gz 73205
diff --git a/dev-tex/lgrind/lgrind-3.67-r2.ebuild b/dev-tex/lgrind/lgrind-3.67-r2.ebuild
new file mode 100644
index 000000000000..a8873586ca03
--- /dev/null
+++ b/dev-tex/lgrind/lgrind-3.67-r2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/lgrind/lgrind-3.67-r2.ebuild,v 1.1 2004/08/18 13:47:32 usata Exp $
+
+inherit latex-package
+
+DESCRIPTION="A source pretty printer for LaTeX - styles to stylise your source and code examples."
+SRC_URI="mirror://gentoo/${PN}.tar.gz"
+LICENSE="as-is"
+
+IUSE=""
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~amd64 ~sparc"
+S=${WORKDIR}/${PN}
+
+src_compile() {
+
+ latex-package_src_compile
+ cd ${S}/source
+ emake || die "Error compiling lgrind executable"
+
+}
+
+src_install() {
+
+ # binary first
+ dobin source/lgrind
+
+ # then the texmf stuff
+ latex-package_src_install
+ insinto /usr/share/texmf/tex/latex/${PN}
+ doins lgrindef
+
+ insinto /etc/env.d
+ doins ${FILESDIR}/99lgrind || die
+
+ # and finally, the documentation
+ dodoc FAQ README
+ docinto examples/
+ dodoc example/*
+ cd ${S}/source
+ doman lgrind.1 lgrindef.5
+
+}