summaryrefslogtreecommitdiff
path: root/dev-tex/slatex
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-tex/slatex
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-tex/slatex')
-rw-r--r--dev-tex/slatex/Manifest3
-rw-r--r--dev-tex/slatex/metadata.xml11
-rw-r--r--dev-tex/slatex/slatex-20090928_p20180415.ebuild41
3 files changed, 0 insertions, 55 deletions
diff --git a/dev-tex/slatex/Manifest b/dev-tex/slatex/Manifest
deleted file mode 100644
index 1c89e0bda26a..000000000000
--- a/dev-tex/slatex/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST slatex-20090928_p20180415.tar.bz2 48075 BLAKE2B b79b11a790411cd02a1e5bcb8c2db023696d4387e0b68af79f0f06cdfbc7e0bd59b0274e6fd5a13665de86274a20998dfa64f45f72c3468773c668a5bf0e2ecf SHA512 13d86f30409918d46d83f4c052d19ab48521f2435c3c142e673aac81e42c04bd2b0f597d46002bc7cc3109215b1954b23329266ad346d123845b6d9a8f45efc4
-EBUILD slatex-20090928_p20180415.ebuild 1030 BLAKE2B 866adb1c6a6edd3c952c4b1a728ec72922771017469832b95960467de7ef61151488cd043422438e080035ac53d028b062f544cbcc524ac8a3d650e7da13e823 SHA512 646cf317fd398c8496a96640cc990c0f19ddc30f88286304c5b9f0e01341c58d20e377175a5c48a03415c8c015f919467dcddf27366cf4af9bf929d1a6e9c0a7
-MISC metadata.xml 1502 BLAKE2B 8f6aa0a8ff064b0f09a90bee49b9d09d252faeaea5ec289196edbbd4f3a4dfd69b2b53d146a73e6827170f402f675e137ff9f001bb2ac359a62846e922545308 SHA512 ae2d9b3ac6f8a93c3926f9dd0216c9650c194e1f091ab56daa4567587a08c1d7656e00107f45dc1c8970771db6c34ca691f792d4480910f0cec4b10901a9fef6
diff --git a/dev-tex/slatex/metadata.xml b/dev-tex/slatex/metadata.xml
deleted file mode 100644
index 909e90edc462..000000000000
--- a/dev-tex/slatex/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>scheme@gentoo.org</email>
- <name>Gentoo Scheme Project</name>
- </maintainer>
- <longdescription lang="en">
-SLaTeX is a Scheme program that allows you to write programs or program fragments ``as is'' in your TeX or LaTeX source. It is particularly geared to the programming languages Scheme and other Lisps, eg, Common Lisp. The formatting of the code includes assigning appropriate fonts and colors to the various tokens in the code (keywords, variables, constants, data), at the same time retaining the proper indentation when going to the non-monospace (non-typewriter) fonts provided by TeX. SLaTeX comes with two databases that recognize the identifier conventions of Scheme and Common Lisp respectively. These can be modified by the user with easy TeX commands. In addition, the user can tell SLaTeX to typeset certain identifiers as specially suited TeX expressions (ie, beyond just fonting them). All this is done without interfering with the identifier conventions of the language of the programming code. In sum, no change need be made to your (presumably running) program code in order to get a typeset version with a desired look: You can get a spectrum of styles ranging from no fonting through basic default fonting to various ``mathematical''-looking output for pedagogic or other reasons.
- </longdescription>
-</pkgmetadata>
diff --git a/dev-tex/slatex/slatex-20090928_p20180415.ebuild b/dev-tex/slatex/slatex-20090928_p20180415.ebuild
deleted file mode 100644
index a74acfadcc98..000000000000
--- a/dev-tex/slatex/slatex-20090928_p20180415.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# for updating the texmf database, id est latex-package_rehash
-inherit latex-package
-
-DESCRIPTION="SLaTeX is a Scheme program allowing you to write Scheme in your (La)TeX source"
-HOMEPAGE="http://www.ccs.neu.edu/home/dorai/slatex/slatxdoc.html"
-SRC_URI="http://www.ccs.neu.edu/home/dorai/slatex/${PN}.tar.bz2 -> ${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="dev-scheme/guile"
-DEPEND="${RDEPEND}
- dev-scheme/scmxlate"
-
-S="${WORKDIR}/${PN}"
-TARGET_DIR="/usr/share/${PN}"
-
-src_prepare() {
- eapply_user
- sed "s:\"/home/dorai/.www/slatex/slatex.scm\":\"${TARGET_DIR}/slatex.scm\":" \
- -i scmxlate-slatex-src.scm || die "sed failed"
-}
-
-src_compile() {
- local command="(load \"/usr/share/scmxlate/scmxlate.scm\")"
- guile -c "${command}" <<< "guile" || die
-}
-
-src_install() {
- insinto "${TARGET_DIR}"
- doins slatex.scm
- insinto "${TEXMF}/tex/latex/${PN}"
- doins slatex.sty
- dobin slatex
-}