diff options
author | Dan Armak <danarmak@gentoo.org> | 2003-06-10 21:10:07 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2003-06-10 21:10:07 +0000 |
commit | 671251beac89d9f9ce91dddb9b0be7f8fe2dc125 (patch) | |
tree | a57cc3f97d2aa3aab464617a03352f20f2cc320d /app-text | |
parent | new package: ivritex adds hebrew support to tetex (diff) | |
download | gentoo-2-671251beac89d9f9ce91dddb9b0be7f8fe2dc125.tar.gz gentoo-2-671251beac89d9f9ce91dddb9b0be7f8fe2dc125.tar.bz2 gentoo-2-671251beac89d9f9ce91dddb9b0be7f8fe2dc125.zip |
new package: ivritex adds hebrew support to tetex
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/ivritex/ChangeLog | 12 | ||||
-rw-r--r-- | app-text/ivritex/Manifest | 3 | ||||
-rw-r--r-- | app-text/ivritex/files/digest-ivritex-1.1.1 | 1 | ||||
-rw-r--r-- | app-text/ivritex/ivritex-1.1.1.ebuild | 27 |
4 files changed, 42 insertions, 1 deletions
diff --git a/app-text/ivritex/ChangeLog b/app-text/ivritex/ChangeLog new file mode 100644 index 000000000000..38927ae280da --- /dev/null +++ b/app-text/ivritex/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for app-text/ivritex +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/ivritex/ChangeLog,v 1.1 2003/06/10 21:09:51 danarmak Exp $ + +*ivritex-1.1.1 (11 Jun 2003) + + 11 Jun 2003; Dan Armak <danarmak@gentoo.org> ivritex-1.1.1.ebuild: + Ivritex adds support for Hebrew to teTeX, as well as Hebrew fonts, sample docs + and the like. A major use of this is to enable LyX to output Hebrew. Thanks to + Tzafrir Cohen (the author of this package) who directed me to make this + ebuild. + diff --git a/app-text/ivritex/Manifest b/app-text/ivritex/Manifest index 4da68deb2424..e998c26f961d 100644 --- a/app-text/ivritex/Manifest +++ b/app-text/ivritex/Manifest @@ -1,2 +1,3 @@ -MD5 572858d42caa1b4b2148af9d0ea44223 ivritex-1.1.1.ebuild 716 +MD5 d1e7de8ec2e753a1f42bde6ba2deab13 ivritex-1.1.1.ebuild 718 +MD5 1eb156623f8d8e76ca3707cf9bc5ace8 ChangeLog 562 MD5 5f552deb29763de5c0cf1cc8e74494fe files/digest-ivritex-1.1.1 65 diff --git a/app-text/ivritex/files/digest-ivritex-1.1.1 b/app-text/ivritex/files/digest-ivritex-1.1.1 new file mode 100644 index 000000000000..f1413d39c100 --- /dev/null +++ b/app-text/ivritex/files/digest-ivritex-1.1.1 @@ -0,0 +1 @@ +MD5 694fb7ccac3e1c8e219598e4ff6cf24b ivritex-1.1.1.tar.gz 574673 diff --git a/app-text/ivritex/ivritex-1.1.1.ebuild b/app-text/ivritex/ivritex-1.1.1.ebuild new file mode 100644 index 000000000000..ff431c395360 --- /dev/null +++ b/app-text/ivritex/ivritex-1.1.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/ivritex/ivritex-1.1.1.ebuild,v 1.1 2003/06/10 21:09:51 danarmak Exp $ + +S=${WORKDIR}/${P} +SRC_URI="mirror://sourceforge/ivritex/${P}.tar.gz" +HOMEPAGE="http://ivritex.sourceforge.net/" +SLOT="0" +LICENSE="LPPL-1.2" +DESCRIPTION="Hebrew support for TeX" +DEPEND=">=app-text/tetex-2.0.0" +KEYWORDS="~x86" + +src_install () { + + make TEX_ROOT=${D}/usr/share/texmf install || die + +} + +pkg_postinst() { + + einfo "Running texhash to complete installation.." + addwrite "/var/lib/texmf" + addwrite "/usr/share/texmf" + addwrite "/var/cache/fonts" + texhash +} |