diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-02-25 13:56:46 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-02-25 13:56:46 +0000 |
commit | 4bf1ceca99753630b06ae435aad4794cc6a5238e (patch) | |
tree | 7a22fcfa1ab2401c6da387ca09fdf7cdcde5bd2a /dev-tex | |
parent | Fix media-libs/libmng depend to require USE="static-libs" wrt #356231 by cand... (diff) | |
download | gentoo-2-4bf1ceca99753630b06ae435aad4794cc6a5238e.tar.gz gentoo-2-4bf1ceca99753630b06ae435aad4794cc6a5238e.tar.bz2 gentoo-2-4bf1ceca99753630b06ae435aad4794cc6a5238e.zip |
Add match-multiline patch from Debian (author: Roland Stigge <stigge@antcom.de>) to support newer perl versions; fix Netpbm version detection
(Portage version: 2.1.9.41/cvs/Linux x86_64)
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/latex2html/ChangeLog | 13 | ||||
-rw-r--r-- | dev-tex/latex2html/files/latex2html-extract-major-version-2.patch | 12 | ||||
-rw-r--r-- | dev-tex/latex2html/latex2html-2008-r1.ebuild | 83 |
3 files changed, 106 insertions, 2 deletions
diff --git a/dev-tex/latex2html/ChangeLog b/dev-tex/latex2html/ChangeLog index b0efd1004fd5..4645c0a62b78 100644 --- a/dev-tex/latex2html/ChangeLog +++ b/dev-tex/latex2html/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for dev-tex/latex2html -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2html/ChangeLog,v 1.52 2010/06/12 12:31:43 aballier Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2html/ChangeLog,v 1.53 2011/02/25 13:56:46 dilfridge Exp $ + +*latex2html-2008-r1 (25 Feb 2011) + + 25 Feb 2011; Andreas K. Huettel <dilfridge@gentoo.org> + +files/latex2html-extract-major-version-2.patch, + +latex2html-2008-r1.ebuild: + Add match-multiline patch from Debian (author: Roland Stigge + <stigge@antcom.de>) to support newer perl versions; fix Netpbm version + detection 12 Jun 2010; Alexis Ballier <aballier@gentoo.org> latex2html-2008.ebuild: do not try to sed a file that does not exist when use=-gif -png is used, 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/latex2html-2008-r1.ebuild b/dev-tex/latex2html/latex2html-2008-r1.ebuild new file mode 100644 index 000000000000..3098d8265833 --- /dev/null +++ b/dev-tex/latex2html/latex2html-2008-r1.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2html/latex2html-2008-r1.ebuild,v 1.1 2011/02/25 13:56:46 dilfridge Exp $ + +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 ~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}" + +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" +} + +src_configure() { + 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" +} + +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" "${D}/usr/$(get_libdir)/latex2html/pstoimg.pl" + sed -i -e "s:${S}::g" "${D}/usr/$(get_libdir)/latex2html/latex2html.pl" || die + sed -i -e "s:${T}:/tmp:g" "${D}/usr/$(get_libdir)/latex2html/cfgcache.pm" || die + sed -i -e "s:${T}:/tmp:g" "${D}/usr/$(get_libdir)/latex2html/l2hconf.pm" || die +} + +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 +} |