diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-tex/texmfind | |
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/texmfind')
-rw-r--r-- | dev-tex/texmfind/Manifest | 1 | ||||
-rw-r--r-- | dev-tex/texmfind/metadata.xml | 28 | ||||
-rw-r--r-- | dev-tex/texmfind/texmfind-2010.1.ebuild | 17 |
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-tex/texmfind/Manifest b/dev-tex/texmfind/Manifest new file mode 100644 index 00000000000..b63c6bf83d9 --- /dev/null +++ b/dev-tex/texmfind/Manifest @@ -0,0 +1 @@ +DIST texmfind-2010.1.tar.bz2 297318 SHA256 c139f96059c0cacaf654bdb57757589014203d3fcc4420ce66e108f5d98b6be4 SHA512 0f36d3036f39fdc24d742cc601712ea7fe91e3f29b5042f87523dd5a004acdb0e9be00f8d017a6f1761afd8c053ff33b9920535770c788acd0e97354bbc7153f WHIRLPOOL 88cdbf8cf57971779a41a1e6d1fac653249b4855f0c262708fec9a5e955c1a44cf8ddecf4c751bb33adfe499dee6815077add05e1e6715a9d37875047e2fdb7f diff --git a/dev-tex/texmfind/metadata.xml b/dev-tex/texmfind/metadata.xml new file mode 100644 index 00000000000..105baf33972 --- /dev/null +++ b/dev-tex/texmfind/metadata.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>tex</herd> + <herd>proxy-maintainers</herd> + <maintainer> + <email>etux@bluewin.ch</email> + <name>Alexandre -- Untux</name> + </maintainer> + <maintainer> + <email>aballier@gentoo.org</email> + <name>Alexis Ballier</name> + </maintainer> + <maintainer> + <email>fauli@gentoo.org</email> + <name>Christian Faulhammer</name> + </maintainer> + <longdescription lang="en"> + Little CLI utility for Gentoo-texlive end-users. Search for texmf-files + matching a grep regexp and get the corresponding ebuild. It consists of + a small Bash script, wrapping grep, and a flat data file containing (a + good chunk of) the texmf-files that can be installed from the main + portage tree. + </longdescription> + <upstream> + <remote-id type="launchpad">texmfind</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-tex/texmfind/texmfind-2010.1.ebuild b/dev-tex/texmfind/texmfind-2010.1.ebuild new file mode 100644 index 00000000000..7e539e3c171 --- /dev/null +++ b/dev-tex/texmfind/texmfind-2010.1.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +DESCRIPTION="Locate the ebuild providing a certain texmf file through regexp" +HOMEPAGE="https://launchpad.net/texmfind/ + http://home.gna.org/texmfind" +SRC_URI="http://launchpad.net/texmfind/2010/${PV}/+download/texmfind-${PV}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 ~mips ~ppc ~ppc64 ~sparc x86" +IUSE="" + +src_install() { + emake DESTDIR="${D}" install || die +} |