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/latex2html | |
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/latex2html')
-rw-r--r-- | dev-tex/latex2html/Manifest | 2 | ||||
-rw-r--r-- | dev-tex/latex2html/files/latex2html-convert-length.patch | 22 | ||||
-rw-r--r-- | dev-tex/latex2html/files/latex2html-destdir.patch | 15 | ||||
-rw-r--r-- | dev-tex/latex2html/files/latex2html-extract-major-version-2.patch | 12 | ||||
-rw-r--r-- | dev-tex/latex2html/files/latex2html-extract-major-version.patch | 12 | ||||
-rw-r--r-- | dev-tex/latex2html/files/latex2html-perl_name.patch | 11 | ||||
-rw-r--r-- | dev-tex/latex2html/latex2html-2008-r1.ebuild | 85 | ||||
-rw-r--r-- | dev-tex/latex2html/latex2html-2008.ebuild | 82 | ||||
-rw-r--r-- | dev-tex/latex2html/metadata.xml | 5 |
9 files changed, 246 insertions, 0 deletions
diff --git a/dev-tex/latex2html/Manifest b/dev-tex/latex2html/Manifest new file mode 100644 index 000000000000..1a28c856876a --- /dev/null +++ b/dev-tex/latex2html/Manifest @@ -0,0 +1,2 @@ +DIST latex2html-2008.tar.gz 1133054 SHA256 59456815a3984250c295d3d5c46b85646038db8db2735cdc0d3780cf4da337ad SHA512 e5a9d1700fcc45e6fcb7bae79e25acd52b7a84b70a75b3c7f1e746f65adbd48219a828420f6a7c437613d5c74dfb0405c91df01ac9c1535e9850f3a3e5c47f60 WHIRLPOOL 3d4dba64a2ce1b548749f5a5d489afba8694b2b6214dc5b7030820898d13a33dd708c751d2dc625a3d93930bcc0e483fa3e6736a2812c3baf395f70bb77404dc +DIST latex2html-match-multiline.patch.bz2 8147 SHA256 fa4c74b1e6ef3fc337485b7940922aaa1aed0c33a533e75f4a97503547f4570e SHA512 01ec0dd1705f030736432a7fa8bf99c83c9e4f01c9755319d36e65e18737361d23073277692a8c44af529a1c37caabcc9e720a4be57e64300f945060e88f6641 WHIRLPOOL d0f69d16060d9829cafdc266acdb50e2071cf742841e7fcce524d69268c51036665670c0e3111e83dea8271cb0032f2362686c976a8b2c9032b50125ab3a9b2c diff --git a/dev-tex/latex2html/files/latex2html-convert-length.patch b/dev-tex/latex2html/files/latex2html-convert-length.patch new file mode 100644 index 000000000000..4171fd7c05e9 --- /dev/null +++ b/dev-tex/latex2html/files/latex2html-convert-length.patch @@ -0,0 +1,22 @@ +--- latex2html-2002-2-1/versions/html2_2.pl.old 2006-02-21 20:37:50.000000000 +0100 ++++ latex2html-2002-2-1/versions/html2_2.pl 2006-02-21 20:38:03.000000000 +0100 +@@ -91,7 +91,7 @@ + ($pxs,$len); + } + # should no longer be needed, as this is defined in latex2html.pin +-if (undefined &convert_length) { sub convert_length {&convert_length_table(@_)} } ++if (!defined (&convert_length)) { sub convert_length {&convert_length_table(@_)} } + + # Translates LaTeX column specifications to HTML. Again, Netscape + # needs some extra work with its width attributes in the <td> tags. +--- latex2html-2002-2-1/versions/table.pl.old 2006-02-21 20:37:54.000000000 +0100 ++++ latex2html-2002-2-1/versions/table.pl 2006-02-21 20:38:11.000000000 +0100 +@@ -91,7 +91,7 @@ + ($pxs,$len); + } + # should no longer be needed, as this is defined in latex2html.pin +-if (undefined &convert_length) { sub convert_length {&convert_length_table(@_)} } ++if (!defined (&convert_length)) { sub convert_length {&convert_length_table(@_)} } + + # Translates LaTeX column specifications to HTML. Again, Netscape + # needs some extra work with its width attributes in the <td> tags. diff --git a/dev-tex/latex2html/files/latex2html-destdir.patch b/dev-tex/latex2html/files/latex2html-destdir.patch new file mode 100644 index 000000000000..2d07beff449b --- /dev/null +++ b/dev-tex/latex2html/files/latex2html-destdir.patch @@ -0,0 +1,15 @@ +Index: latex2html-2008/config/install.pl +=================================================================== +--- latex2html-2008.orig/config/install.pl ++++ latex2html-2008/config/install.pl +@@ -372,7 +372,9 @@ foreach $item (sort keys %Install_items) + + if($cfg{TEXPATH}) { + print "\nNote: trying to install LaTeX2HTML style files in TeX directory tree\n ($cfg{TEXPATH})\n"; +- unless(mkpath($cfg{TEXPATH})) { ++ my $destdir = $cfg{TEXPATH}; ++ $destdir = $ENV{'DESTDIR'}.$destdir if($ENV{'DESTDIR'}); ++ unless(mkpath($destdir)) { + #my $testpath = $cfg{TEXPATH}; # to strip (latex2)html + #$testpath =~ s/[$dd$dd][^$dd$dd]*$//; + #if((-d $cfg{TEXPATH} && !-w _) || (-d $testpath && !-w _)) { diff --git a/dev-tex/latex2html/files/latex2html-extract-major-version-2.patch b/dev-tex/latex2html/files/latex2html-extract-major-version-2.patch new file mode 100644 index 000000000000..11b6685385ec --- /dev/null +++ b/dev-tex/latex2html/files/latex2html-extract-major-version-2.patch @@ -0,0 +1,12 @@ +diff -urN latex2html-2002-2-1.orig/config/config.pl latex2html-2002-2-1/config/config.pl +--- latex2html-2002-2-1.orig/config/config.pl 2006-06-02 20:41:18.000000000 +0200 ++++ latex2html-2002-2-1/config/config.pl 2006-06-02 20:42:07.000000000 +0200 +@@ -1275,7 +1275,7 @@ + ($stat,$msg,$err) = &get_out_err("$pnmcrop -version"); + my $vers = ''; + $msg = $msg || $err; +- if ($msg =~ /(^|\s*)Version.*\s([\d\.]+)\s*([\n\r]|$)/is) { $vers = $2; } ++ if ($msg =~ /(^|\s*)Version: Netpbm (\d+)\..*\s*([\n\r]|$)/is) { $vers = $2; } + if ($vers =~ /^199/) { + # try left crop + &checking('if pnmcrop can crop from one direction'); diff --git a/dev-tex/latex2html/files/latex2html-extract-major-version.patch b/dev-tex/latex2html/files/latex2html-extract-major-version.patch new file mode 100644 index 000000000000..7340754e5b41 --- /dev/null +++ b/dev-tex/latex2html/files/latex2html-extract-major-version.patch @@ -0,0 +1,12 @@ +diff -urN latex2html-2002-2-1.orig/config/config.pl latex2html-2002-2-1/config/config.pl +--- latex2html-2002-2-1.orig/config/config.pl 2006-06-02 20:41:18.000000000 +0200 ++++ latex2html-2002-2-1/config/config.pl 2006-06-02 20:42:07.000000000 +0200 +@@ -1275,7 +1275,7 @@ + ($stat,$msg,$err) = &get_out_err("$pnmcrop -version"); + my $vers = ''; + $msg = $msg || $err; +- if ($msg =~ /(^|\s*)Version.*\s([\d\.]+)\s*([\n\r]|$)/is) { $vers = $2; } ++ if ($msg =~ /(^|\s*)Version.*\s(\d+)\..*\s*([\n\r]|$)/is) { $vers = $2; } + if ($vers =~ /^199/) { + # try left crop + &checking('if pnmcrop can crop from one direction'); diff --git a/dev-tex/latex2html/files/latex2html-perl_name.patch b/dev-tex/latex2html/files/latex2html-perl_name.patch new file mode 100644 index 000000000000..cc56f91437fa --- /dev/null +++ b/dev-tex/latex2html/files/latex2html-perl_name.patch @@ -0,0 +1,11 @@ +--- latex2html-2002-2-1/config/config.pl 2002-11-29 12:49:01.000000000 +0100 ++++ latex2html-2002-2-1/config/config.pl.new 2006-05-23 11:29:10.000000000 +0200 +@@ -617,7 +617,7 @@ + + # only perl gets an absolute pathname + my $abs_path_names = 1; +-$newcfg{'PERL'} = &find_prog($^X); # take the perl internal executable name ++$newcfg{'PERL'} = &find_prog("perl"); # take the perl internal executable name + &checking('perl version'); + &result($]); + diff --git a/dev-tex/latex2html/latex2html-2008-r1.ebuild b/dev-tex/latex2html/latex2html-2008-r1.ebuild new file mode 100644 index 000000000000..b5dd764dd309 --- /dev/null +++ b/dev-tex/latex2html/latex2html-2008-r1.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit base eutils multilib + +DESCRIPTION="convertor written in Perl that converts LATEX documents to HTML" +SRC_URI="http://saftsack.fs.uni-bayreuth.de/~latex2ht/current/${P}.tar.gz + http://dev.gentoo.org/~dilfridge/distfiles/${PN}-match-multiline.patch.bz2" +HOMEPAGE="http://www.latex2html.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="gif png" + +DEPEND="app-text/ghostscript-gpl + virtual/latex-base + media-libs/netpbm + dev-lang/perl + gif? ( media-libs/giflib ) + png? ( media-libs/libpng )" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${PN}"-{convert-length,perl_name,extract-major-version-2,destdir}.patch + "${DISTDIR}/${PN}"-match-multiline.patch.bz2 ) + +src_prepare() { + base_src_prepare + + # Dont install old url.sty and other files + # Bug #240980 + rm -f texinputs/url.sty texinputs/latin9.def || die "failed to remove duplicate latex files" + + sed -ie 's%@PERL@%'"${EPREFIX}"'/usr/bin/perl%g' wrapper/unix.pin || die +} + +src_configure() { + local myconf + + use gif || use png || myconf="${myconf} --disable-images" + + econf --libdir="${EPREFIX}"/usr/$(get_libdir)/latex2html \ + --shlibdir="${EPREFIX}"/usr/$(get_libdir)/latex2html \ + --enable-pk \ + --enable-eps \ + --enable-reverse \ + --enable-pipes \ + --enable-paths \ + --enable-wrapper \ + --with-texpath="${EPREFIX}"/usr/share/texmf-site/tex/latex/html \ + --without-mktexlsr \ + $(use_enable gif) \ + $(use_enable png) \ + ${myconf} || die "econf failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + + dodoc BUGS Changes FAQ LICENSE.orig MANIFEST README* TODO + + # make /usr/share/latex2html sticky + keepdir /usr/share/latex2html + + # clean the perl scripts up to remove references to the sandbox + einfo "fixing sandbox references" + # pstoimg isn't built unless gif or png useflags are enabled + { use png || use gif ; } && sed -i -e "s:${T}:/tmp:g" "${ED}/usr/$(get_libdir)/latex2html/pstoimg.pl" + sed -i -e "s:${S}::g" "${ED}/usr/$(get_libdir)/latex2html/latex2html.pl" || die + sed -i -e "s:${T}:/tmp:g" "${ED}/usr/$(get_libdir)/latex2html/cfgcache.pm" || die + sed -i -e "s:${T}:/tmp:g" "${ED}/usr/$(get_libdir)/latex2html/l2hconf.pm" || die +} + +pkg_postinst() { + einfo "Running ${EROOT}usr/bin/mktexlsr to rebuild ls-R database...." + "${EROOT}"usr/bin/mktexlsr +} + +pkg_postrm() { + einfo "Running ${EROOT}usr/bin/mktexlsr to rebuild ls-R database...." + "${EROOT}"usr/bin/mktexlsr +} diff --git a/dev-tex/latex2html/latex2html-2008.ebuild b/dev-tex/latex2html/latex2html-2008.ebuild new file mode 100644 index 000000000000..cef871df9803 --- /dev/null +++ b/dev-tex/latex2html/latex2html-2008.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit eutils multilib + +DESCRIPTION="convertor written in Perl that converts LATEX documents to HTML" +SRC_URI="http://saftsack.fs.uni-bayreuth.de/~latex2ht/current/${P}.tar.gz" +HOMEPAGE="http://www.latex2html.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" +IUSE="gif png" + +DEPEND="app-text/ghostscript-gpl + virtual/latex-base + media-libs/netpbm + dev-lang/perl + gif? ( media-libs/giflib ) + png? ( media-libs/libpng )" +RDEPEND="${DEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-convert-length.patch" + epatch "${FILESDIR}/${PN}-perl_name.patch" + epatch "${FILESDIR}/${PN}-extract-major-version.patch" + epatch "${FILESDIR}/${PN}-destdir.patch" + # Dont install old url.sty and other files + # Bug #240980 + rm -f texinputs/url.sty texinputs/latin9.def || die "failed to remove duplicate latex files" +} + +src_compile() { + local myconf + + use gif || use png || myconf="${myconf} --disable-images" + + econf --libdir=/usr/$(get_libdir)/latex2html \ + --shlibdir=/usr/$(get_libdir)/latex2html \ + --enable-pk \ + --enable-eps \ + --enable-reverse \ + --enable-pipes \ + --enable-paths \ + --enable-wrapper \ + --with-texpath=/usr/share/texmf-site/tex/latex/html \ + --without-mktexlsr \ + $(use_enable gif) \ + $(use_enable png) \ + ${myconf} || die "econf failed" + emake || die "make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + + dodoc BUGS Changes FAQ LICENSE.orig MANIFEST README* TODO + + # make /usr/share/latex2html sticky + keepdir /usr/share/latex2html + + # clean the perl scripts up to remove references to the sandbox + einfo "fixing sandbox references" + # pstoimg isn't built unless gif or png useflags are enabled + { use png || use gif ; } && dosed "s:${T}:/tmp:g" /usr/$(get_libdir)/latex2html/pstoimg.pl + dosed "s:${S}::g" /usr/$(get_libdir)/latex2html/latex2html.pl + dosed "s:${T}:/tmp:g" /usr/$(get_libdir)/latex2html/cfgcache.pm + dosed "s:${T}:/tmp:g" /usr/$(get_libdir)/latex2html/l2hconf.pm +} + +pkg_postinst() { + einfo "Running ${ROOT}usr/bin/mktexlsr to rebuild ls-R database...." + "${ROOT}"usr/bin/mktexlsr +} + +pkg_postrm() { + einfo "Running ${ROOT}usr/bin/mktexlsr to rebuild ls-R database...." + "${ROOT}"usr/bin/mktexlsr +} diff --git a/dev-tex/latex2html/metadata.xml b/dev-tex/latex2html/metadata.xml new file mode 100644 index 000000000000..ba6a8a8800d5 --- /dev/null +++ b/dev-tex/latex2html/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> |