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/html2latex | |
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/html2latex')
-rw-r--r-- | dev-tex/html2latex/Manifest | 1 | ||||
-rw-r--r-- | dev-tex/html2latex/html2latex-1.1-r1.ebuild | 41 | ||||
-rw-r--r-- | dev-tex/html2latex/metadata.xml | 8 |
3 files changed, 50 insertions, 0 deletions
diff --git a/dev-tex/html2latex/Manifest b/dev-tex/html2latex/Manifest new file mode 100644 index 000000000000..0090943ebf4b --- /dev/null +++ b/dev-tex/html2latex/Manifest @@ -0,0 +1 @@ +DIST html2latex-1.1.tar.gz 48439 SHA256 b724f01c9a094ac07740676ae2b1e158a6e94358fc695f1233233efeaae9baf4 SHA512 ceddb3b33359e07fdbfe0263a1ffd7dddfc95cfb256468a921513ed41777b14d4433117b9143cf23d46c867514be66235acd62065591a403c19c6f8f768be73a WHIRLPOOL c9c1daba9612b6f979aed512e97468fa786b72bd6276659f567877528ba2ab346e886048aa98417f663e64c55f819359feb2b38c93afca0edc26c9ba557c6056 diff --git a/dev-tex/html2latex/html2latex-1.1-r1.ebuild b/dev-tex/html2latex/html2latex-1.1-r1.ebuild new file mode 100644 index 000000000000..b97dda6973fb --- /dev/null +++ b/dev-tex/html2latex/html2latex-1.1-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit perl-module + +DESCRIPTION="Perl script to convert HTML files into formatted LaTeX" +HOMEPAGE="http://html2latex.sourceforge.net/" +SRC_URI="mirror://sourceforge/html2latex/${P}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" + +IUSE="imagemagick libwww" + +DEPEND="dev-perl/HTML-Tree + dev-perl/XML-Simple + imagemagick? ( media-gfx/imagemagick ) + libwww? ( dev-perl/libwww-perl )" + +src_compile() { + # HTML::LaTex + cd HTML + perl-module_src_configure + perl-module_src_compile +} + +src_install() { + dobin html2latex + doman html2latex.1 + dodoc README TODO + + # HTML::LaTex + cd HTML + perl-module_src_install + rm unwanted README.win + rm $(find "${D}" -name README.win.txt) || die +} diff --git a/dev-tex/html2latex/metadata.xml b/dev-tex/html2latex/metadata.xml new file mode 100644 index 000000000000..9742be5022a8 --- /dev/null +++ b/dev-tex/html2latex/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>tex</herd> + <upstream> + <remote-id type="sourceforge">html2latex</remote-id> + </upstream> +</pkgmetadata> |