aballier    14/12/03 16:14:16

  Modified:             ChangeLog
  Added:                latex2rtf-2.3.8.ebuild
  Log:
  version bump, bug #500296; import patch from fedora to fix doc build, bug 
#468086
  
  Signed-off-by: [email protected]
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  Changes    Path
1.45                 dev-tex/latex2rtf/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex2rtf/ChangeLog?rev=1.45&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex2rtf/ChangeLog?rev=1.45&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex2rtf/ChangeLog?r1=1.44&r2=1.45

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog   10 Mar 2013 10:22:41 -0000      1.44
+++ ChangeLog   3 Dec 2014 16:14:16 -0000       1.45
@@ -1,6 +1,13 @@
 # ChangeLog for dev-tex/latex2rtf
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/ChangeLog,v 1.44 
2013/03/10 10:22:41 aballier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/ChangeLog,v 1.45 
2014/12/03 16:14:16 aballier Exp $
+
+*latex2rtf-2.3.8 (03 Dec 2014)
+
+  03 Dec 2014; Alexis Ballier <[email protected]> +latex2rtf-2.3.8.ebuild,
+  +files/texinfo5.patch:
+  version bump, bug #500296; import patch from fedora to fix doc build, bug
+  #468086
 
 *latex2rtf-2.3.3 (10 Mar 2013)
 



1.1                  dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild?rev=1.1&content-type=text/plain

Index: latex2rtf-2.3.8.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild,v 
1.1 2014/12/03 16:14:16 aballier Exp $

EAPI=5

inherit toolchain-funcs eutils

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_prepare() {
        epatch "${FILESDIR}/texinfo5.patch"
}

src_compile() {
        export VARTEXFONTS="${T}/fonts"
        tc-export CC
        # Set DESTDIR here too so that compiled-in paths are correct.
        emake DESTDIR="${EPREFIX}/usr" || die "emake failed"
        if use doc; then
                cd "${S}/doc"
                emake realclean
                emake -j1
        else
                touch "${S}/doc/latex2rtf.html"
        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
}




Reply via email to