diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-tex/fundus | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-tex/fundus')
-rw-r--r-- | dev-tex/fundus/Manifest | 2 | ||||
-rw-r--r-- | dev-tex/fundus/fundus-19970826.ebuild | 39 | ||||
-rw-r--r-- | dev-tex/fundus/metadata.xml | 5 |
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-tex/fundus/Manifest b/dev-tex/fundus/Manifest new file mode 100644 index 000000000000..fe78a7b3fc45 --- /dev/null +++ b/dev-tex/fundus/Manifest @@ -0,0 +1,2 @@ +DIST fundus-19970826.tar.gz 315674 SHA256 7ce25d294c990db8dcc25fb2dc7d85f705da3b02e243d66c97e3905ce829c37c SHA512 5bd9db0312b3d86682aee8d0adbc92f6bfa65c056c53c226244751533d3adce2e20a95398f37c1f814cff4891ed5f60b4b1218fa493134d4fea419ba1b2f2a61 WHIRLPOOL a28e63bbc8ddb36091bc3b6631453103a52b089841c699ca1f040fc4498ff815bc8f5b33e9bb11d328eaa77cacc83a18ebdaf4d01b1d521eda3fe5b1ac04cdeb +DIST fundus-fonts.tar.gz 141837 SHA256 ecff98e0805e1d24aa63aefba7e14f9a694bdad7e0c35fc9afdd9cdefbdcdead SHA512 668a4f75e0a11a8201a5a922ceec8b37e167a32226636bbcab800ec91ca68367993300aec39e4f6ac0b7579fc25afa545f013b11d8dfc78cde6208a601cb5e60 WHIRLPOOL 712ebec835a5a54a82998b621c2620c76c29dc6f6e915a4d4c391d41d92256bb586bda36210a2560f166f75cc4586b96373375573dada4ceaa926d6be15d1c85 diff --git a/dev-tex/fundus/fundus-19970826.ebuild b/dev-tex/fundus/fundus-19970826.ebuild new file mode 100644 index 000000000000..57a1862a4451 --- /dev/null +++ b/dev-tex/fundus/fundus-19970826.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit latex-package + +S=${WORKDIR}/${PN} +DESCRIPTION="Providing LaTeX access to various font families" +HOMEPAGE="http://www.ctan.org/tex-archive/help/Catalogue/entries/fundus.html" +# Taken from: ftp://ftp.dante.de/tex-archive/macros/latex/contrib/gene/fundus.tar.gz +# ftp://ftp.dante.de/tex-archive/fonts/twcal.tar.gz +# ftp://ftp.dante.de/tex-archive/fonts/va.tar.gz +# ftp://ftp.dante.de/tex-archive/fonts/la.tar.gz +# ftp://ftp.dante.de/tex-archive/fonts/calligra.tar.gz +SRC_URI="mirror://gentoo/${P}.tar.gz + mirror://gentoo/${PN}-fonts.tar.gz" +IUSE="" +SLOT="0" +LICENSE="LPPL-1.3c" +KEYWORDS="x86 ~amd64 ~sparc ~ppc" + +src_unpack() { + unpack ${A} + cd ${S} + for i in *.tar.gz ; do + tar xzf $i + done +} + +src_install() { + latex-package_src_install + + for f in va la twcal calligra ; do + pushd $f + insinto /usr/share/texmf/fonts/source/public/$f + doins *.mf + popd + done +} diff --git a/dev-tex/fundus/metadata.xml b/dev-tex/fundus/metadata.xml new file mode 100644 index 000000000000..ba6a8a8800d5 --- /dev/null +++ b/dev-tex/fundus/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>tex</herd> +</pkgmetadata> |