diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-02-19 17:09:28 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-02-19 17:09:28 +0000 |
commit | c8cc6b3c6198d08d52ba0ee6c196f157b854f0b0 (patch) | |
tree | 46c2558e84425ac91ab9e4a98dd6b7acade80c9b /dev-tex/koma-script | |
parent | Mark 2.0.16-r1 stable on alpha and ia64. Mark 2.0.18 testing on ~ia64 (it al... (diff) | |
download | gentoo-2-c8cc6b3c6198d08d52ba0ee6c196f157b854f0b0.tar.gz gentoo-2-c8cc6b3c6198d08d52ba0ee6c196f157b854f0b0.tar.bz2 gentoo-2-c8cc6b3c6198d08d52ba0ee6c196f157b854f0b0.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/ChangeLog | 8 | ||||
-rw-r--r-- | dev-tex/koma-script/files/digest-koma-script-20040111-r1 | 1 | ||||
-rw-r--r-- | dev-tex/koma-script/koma-script-20040111-r1.ebuild | 31 |
3 files changed, 39 insertions, 1 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/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 +} |