diff options
author | Matthew Turk <satai@gentoo.org> | 2002-08-22 06:48:42 +0000 |
---|---|---|
committer | Matthew Turk <satai@gentoo.org> | 2002-08-22 06:48:42 +0000 |
commit | 25ed936305933b150a315b87d0ae540ed5e7c5f9 (patch) | |
tree | aad74ac7e2052f9c4a9387ecece5c54dafb0f716 /app-office | |
parent | Added some better documentation handling. (diff) | |
download | gentoo-2-25ed936305933b150a315b87d0ae540ed5e7c5f9.tar.gz gentoo-2-25ed936305933b150a315b87d0ae540ed5e7c5f9.tar.bz2 gentoo-2-25ed936305933b150a315b87d0ae540ed5e7c5f9.zip |
Version bump. Closes 6532.
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/texmacs/files/digest-texmacs-1.0.0.14 | 2 | ||||
-rw-r--r-- | app-office/texmacs/texmacs-1.0.0.14.ebuild | 33 |
2 files changed, 35 insertions, 0 deletions
diff --git a/app-office/texmacs/files/digest-texmacs-1.0.0.14 b/app-office/texmacs/files/digest-texmacs-1.0.0.14 new file mode 100644 index 000000000000..8daff567eb1e --- /dev/null +++ b/app-office/texmacs/files/digest-texmacs-1.0.0.14 @@ -0,0 +1,2 @@ +MD5 c7cba053de35cd9660ea646d7ec742d5 TeXmacs-1.0.0.14-src.tar.gz 1581296 +MD5 945dfd3f76b20082aeea8131d87a260f TeXmacs-600dpi-fonts.tar.gz 2899193 diff --git a/app-office/texmacs/texmacs-1.0.0.14.ebuild b/app-office/texmacs/texmacs-1.0.0.14.ebuild new file mode 100644 index 000000000000..bc16122c91af --- /dev/null +++ b/app-office/texmacs/texmacs-1.0.0.14.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.3 2002/02/04 15:46:51 gbevin Exp + +S=${WORKDIR}/TeXmacs-${PV}-src +DESCRIPTION="GNU TeXmacs is a free GUI scientific editor, inspired by TeX and GNU Emacs." +SRC_URI="ftp://ftp.texmacs.org/pub/TeXmacs/targz/TeXmacs-${PV}-src.tar.gz + ftp://ftp.texmacs.org/pub/TeXmacs/targz/TeXmacs-600dpi-fonts.tar.gz" +HOMEPAGE="http://www.texmacs.org/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND=">=app-text/tetex-1.0.7-r7 + >=dev-util/guile-1.3.4 + >=x11-base/xfree-4.2.0-r5" + +RDEPEND="${DEPEND} + app-text/ghostscript" + +src_install() { + + cd ${S} + make DESTDIR=${D} install || die + + cd ${WORKDIR} + dodir /usr/share/texmf + cp -r fonts ${D}/usr/share/texmf/ + + cd ${S} + dodoc COMPILE COPYING LICENSE +} |