diff options
author | 2012-10-10 12:56:27 +0000 | |
---|---|---|
committer | 2012-10-10 12:56:27 +0000 | |
commit | acf14ca9a5cbc693d7ca21e0c8dc7d9d45ea6ca5 (patch) | |
tree | c9201983edfe6d62ec802c40e45b1674b8c781cb /dev-tex/latex2rtf | |
parent | Update libmapi mask (diff) | |
download | gentoo-2-acf14ca9a5cbc693d7ca21e0c8dc7d9d45ea6ca5.tar.gz gentoo-2-acf14ca9a5cbc693d7ca21e0c8dc7d9d45ea6ca5.tar.bz2 gentoo-2-acf14ca9a5cbc693d7ca21e0c8dc7d9d45ea6ca5.zip |
version bump, by Mario Kicherer, bug #437810
(Portage version: 2.2.0_alpha136/cvs/Linux x86_64)
Diffstat (limited to 'dev-tex/latex2rtf')
-rw-r--r-- | dev-tex/latex2rtf/ChangeLog | 7 | ||||
-rw-r--r-- | dev-tex/latex2rtf/latex2rtf-2.3.1.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/dev-tex/latex2rtf/ChangeLog b/dev-tex/latex2rtf/ChangeLog index 1e038e5a6363..efee56def501 100644 --- a/dev-tex/latex2rtf/ChangeLog +++ b/dev-tex/latex2rtf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-tex/latex2rtf # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/ChangeLog,v 1.41 2012/09/09 15:50:33 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/ChangeLog,v 1.42 2012/10/10 12:56:27 aballier Exp $ + +*latex2rtf-2.3.1 (10 Oct 2012) + + 10 Oct 2012; Alexis Ballier <aballier@gentoo.org> +latex2rtf-2.3.1.ebuild: + version bump, by Mario Kicherer, bug #437810 09 Sep 2012; Raúl Porcel <armin76@gentoo.org> latex2rtf-2.2.1b.ebuild: alpha/ia64/sparc stable wrt #429050 diff --git a/dev-tex/latex2rtf/latex2rtf-2.3.1.ebuild b/dev-tex/latex2rtf/latex2rtf-2.3.1.ebuild new file mode 100644 index 000000000000..3043b699cee8 --- /dev/null +++ b/dev-tex/latex2rtf/latex2rtf-2.3.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.3.1.ebuild,v 1.1 2012/10/10 12:56:27 aballier Exp $ + +EAPI=4 + +inherit toolchain-funcs + +DESCRIPTION="LaTeX to RTF converter" +HOMEPAGE="http://latex2rtf.sourceforge.net/" +SRC_URI="mirror://sourceforge/latex2rtf/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +SLOT="0" +IUSE="doc test" +S="${WORKDIR}/${P%b}" + +RDEPEND="virtual/latex-base + media-gfx/imagemagick" +DEPEND="${RDEPEND} + doc? ( virtual/texi2dvi ) + test? ( + dev-texlive/texlive-langgerman + dev-texlive/texlive-fontsrecommended + dev-texlive/texlive-latexextra + dev-tex/latex2html + )" + +src_compile() { + export VARTEXFONTS="${T}/fonts" + # Set DESTDIR here too so that compiled-in paths are correct. + emake DESTDIR="${EPREFIX}/usr" CC="$(tc-getCC)" || die "emake failed" + if use doc; then + cd "${S}/doc" + emake realclean + emake -j1 + fi +} + +src_install() { + dodoc README* HACKING ToDo ChangeLog doc/credits + emake DESTDIR="${ED}/usr" -j1 install + # if doc is not used, only the text version is intalled. + if use doc; then + emake DESTDIR="${ED}/usr" install-info + fi +} |