summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-02-19 17:09:28 +0000
committerMamoru Komachi <usata@gentoo.org>2004-02-19 17:09:28 +0000
commitb69584e969ae438f3d697496474c3bdb369b8e6a (patch)
tree200d5d25cd773fb447ea8e7cb307ffa19a79982b /dev-tex/koma-script
parentMark 2.0.16-r1 stable on alpha and ia64. Mark 2.0.18 testing on ~ia64 (it al... (diff)
downloadhistorical-b69584e969ae438f3d697496474c3bdb369b8e6a.tar.gz
historical-b69584e969ae438f3d697496474c3bdb369b8e6a.tar.bz2
historical-b69584e969ae438f3d697496474c3bdb369b8e6a.zip
Rewrote to use Makefile from source distribution. See bug #41780
Diffstat (limited to 'dev-tex/koma-script')
-rw-r--r--dev-tex/koma-script/ChangeLog8
-rw-r--r--dev-tex/koma-script/Manifest4
-rw-r--r--dev-tex/koma-script/files/digest-koma-script-20040111-r11
-rw-r--r--dev-tex/koma-script/koma-script-20040111-r1.ebuild31
4 files changed, 42 insertions, 2 deletions
diff --git a/dev-tex/koma-script/ChangeLog b/dev-tex/koma-script/ChangeLog
index 8ce728421bf3..6d9cbc0f25de 100644
--- a/dev-tex/koma-script/ChangeLog
+++ b/dev-tex/koma-script/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-tex/koma-script
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/koma-script/ChangeLog,v 1.1 2004/01/31 14:48:38 usata Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/koma-script/ChangeLog,v 1.2 2004/02/19 17:09:28 usata Exp $
+
+*koma-script-20040111-r1 (20 Feb 2004)
+
+ 20 Feb 2004; Mamoru KOMACHI <usata@gentoo.org>
+ koma-script-20040111-r1.ebuild:
+ Rewrote to use Makefile from source distribution. See bug #41780
*koma-script-20040111 (31 Jan 2004)
diff --git a/dev-tex/koma-script/Manifest b/dev-tex/koma-script/Manifest
index 4a0079b58ddc..0c954dbf7866 100644
--- a/dev-tex/koma-script/Manifest
+++ b/dev-tex/koma-script/Manifest
@@ -1,4 +1,6 @@
MD5 dd7c4cca2dc632e2b482d626266e554c koma-script-20040111.ebuild 678
MD5 c472f5fd1646eb8bca71d8df5cb2bdcc metadata.xml 164
-MD5 913a359f00e37bdee66a021b9df969d7 ChangeLog 432
+MD5 f8ad47418640f84aa92a386315c2eabc ChangeLog 623
+MD5 193fc24309fb0365729adcf9d74eedf3 koma-script-20040111-r1.ebuild 931
MD5 8121160d3acbf984c28923bb5c8243c5 files/digest-koma-script-20040111 73
+MD5 8121160d3acbf984c28923bb5c8243c5 files/digest-koma-script-20040111-r1 73
diff --git a/dev-tex/koma-script/files/digest-koma-script-20040111-r1 b/dev-tex/koma-script/files/digest-koma-script-20040111-r1
new file mode 100644
index 000000000000..153ba3e06ac7
--- /dev/null
+++ b/dev-tex/koma-script/files/digest-koma-script-20040111-r1
@@ -0,0 +1 @@
+MD5 1c61e9383507b7967c891cdfb3bae5cf koma-script-20040111.tar.gz 3550660
diff --git a/dev-tex/koma-script/koma-script-20040111-r1.ebuild b/dev-tex/koma-script/koma-script-20040111-r1.ebuild
new file mode 100644
index 000000000000..25114756cba5
--- /dev/null
+++ b/dev-tex/koma-script/koma-script-20040111-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Id: koma-script-20040111-r1.ebuild,v 1.1 2004/02/19 17:09:28 usata Exp $
+
+inherit latex-package
+
+S=${WORKDIR}/${PN}
+
+DESCRIPTION="LaTeX package with german adaptions of common (english) classes"
+# Taken from: ftp://ftp.dante.de/tex-archive/macros/latex/contrib/${PN}.tar.gz
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+HOMEPAGE="ftp://ftp.dante.de/tex-archive/help/Catalogue/entries/koma-script.html"
+LICENSE="LPPL-1.2"
+#for License details see /usr/share/doc/latex-foiltex-2.1.3/foiltex.ins
+SLOT="0"
+KEYWORDS="~x86"
+
+src_compile() {
+ make -f Makefile.unx || die
+}
+
+src_install () {
+ dodir /usr/share/doc/${PF}
+ yes | make -f Makefile.unx \
+ INSTALLTEXMF=${D}/usr/share/texmf \
+ DOCDIR=${D}/usr/share/doc/${PF} \
+ TEXHASH="" install || die
+ #dodoc 00* *.TXT *.txt
+ #insinto /usr/share/doc/${PF}
+ #doins *.xml *.pdf
+}