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/dot2texi | |
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/dot2texi')
-rw-r--r-- | dev-tex/dot2texi/Manifest | 1 | ||||
-rw-r--r-- | dev-tex/dot2texi/dot2texi-3.0.ebuild | 38 | ||||
-rw-r--r-- | dev-tex/dot2texi/metadata.xml | 10 |
3 files changed, 49 insertions, 0 deletions
diff --git a/dev-tex/dot2texi/Manifest b/dev-tex/dot2texi/Manifest new file mode 100644 index 000000000000..4703cce2f4e8 --- /dev/null +++ b/dev-tex/dot2texi/Manifest @@ -0,0 +1 @@ +DIST dot2texi-3.0.zip 280478 SHA256 40a2efe7370c279acc81e387f4f086e65e1ca2d6cdccc383aa50e14f274aea48 SHA512 fa45a8545ac9b84553ab75cdaf82220efecbe83d24defc0194e93ba438f320d0a0198940e760525ae4da034bf1f8d105a512a470815d7d3495b23944af16fb9b WHIRLPOOL 41830201afd8faa250380d4861dc395ba58dcf77032d12871e0d7415d97709caee742096db2f3266f44585ba5d6d6df7bd8e28be45535d041d5b97bdfb19afe4 diff --git a/dev-tex/dot2texi/dot2texi-3.0.ebuild b/dev-tex/dot2texi/dot2texi-3.0.ebuild new file mode 100644 index 000000000000..ad0ab0729dff --- /dev/null +++ b/dev-tex/dot2texi/dot2texi-3.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit latex-package + +DESCRIPTION="Create graphs within LaTeX using the dot2tex tool" +HOMEPAGE="http://www.ctan.org/tex-archive/help/Catalogue/entries/dot2texi.html" +# Taken from http://theory.uwinnipeg.ca/scripts/CTAN/macros/latex/contrib/dot2texi.zip +SRC_URI="mirror://gentoo/${P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" +IUSE="pgf pstricks examples" + +DEPEND="app-arch/unzip" +RDEPEND="pstricks? ( dev-texlive/texlive-pstricks ) + pgf? ( dev-tex/pgf ) + dev-texlive/texlive-latexrecommended + dev-texlive/texlive-latexextra + >=dev-tex/dot2tex-2.7.0" + +S="${WORKDIR}/${PN}" + +TEXMF="/usr/share/texmf-site" + +src_install() { + latex-package_src_doinstall sty pdf + + dodoc README + dodoc ${PN}.tex + + if use examples; then + insinto "/usr/share/doc/${PF}/examples" + doins examples/* + fi +} diff --git a/dev-tex/dot2texi/metadata.xml b/dev-tex/dot2texi/metadata.xml new file mode 100644 index 000000000000..8ac42f03a0d5 --- /dev/null +++ b/dev-tex/dot2texi/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>tex</herd> +<use> + <flag name='pgf'>Enable support for <pkg>dev-tex/pgf</pkg> (The TeX Portable + Graphic Format)</flag> + <flag name='pstricks'>Enable pstricks support</flag> +</use> +</pkgmetadata> |