public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-tex/latex2rtf: ChangeLog latex2rtf-2.3.8.ebuild
@ 2014-12-03 16:14 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2014-12-03 16:14 UTC (permalink / raw
  To: gentoo-commits

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: aballier@gentoo.org
  (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 <aballier@gentoo.org> +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
}





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-tex/latex2rtf: ChangeLog latex2rtf-2.3.8.ebuild
@ 2014-12-05  9:44 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2014-12-05  9:44 UTC (permalink / raw
  To: gentoo-commits

aballier    14/12/05 09:44:26

  Modified:             ChangeLog latex2rtf-2.3.8.ebuild
  Log:
  drop doc useflag; texi2dvi is needed anyway and it makes little sense to have it control only the info files installation; reported by hanno on irc
  
  Signed-off-by: aballier@gentoo.org
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.47                 dev-tex/latex2rtf/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	3 Dec 2014 16:22:45 -0000	1.46
+++ ChangeLog	5 Dec 2014 09:44:26 -0000	1.47
@@ -1,6 +1,10 @@
 # ChangeLog for dev-tex/latex2rtf
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/ChangeLog,v 1.46 2014/12/03 16:22:45 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/ChangeLog,v 1.47 2014/12/05 09:44:26 aballier Exp $
+
+  05 Dec 2014; Alexis Ballier <aballier@gentoo.org> latex2rtf-2.3.8.ebuild:
+  drop doc useflag; texi2dvi is needed anyway and it makes little sense to have
+  it control only the info files installation; reported by hanno on irc
 
   03 Dec 2014; Alexis Ballier <aballier@gentoo.org> latex2rtf-2.2.1b.ebuild:
   depend on sys-apps/man for stable version, bug #438496



1.2                  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.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild?r1=1.1&r2=1.2

Index: latex2rtf-2.3.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- latex2rtf-2.3.8.ebuild	3 Dec 2014 16:14:16 -0000	1.1
+++ latex2rtf-2.3.8.ebuild	5 Dec 2014 09:44:26 -0000	1.2
@@ -1,6 +1,6 @@
 # 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 $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild,v 1.2 2014/12/05 09:44:26 aballier Exp $
 
 EAPI=5
 
@@ -13,13 +13,13 @@
 LICENSE="GPL-2"
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 SLOT="0"
-IUSE="doc test"
+IUSE="test"
 S="${WORKDIR}/${P%b}"
 
 RDEPEND="virtual/latex-base
 	media-gfx/imagemagick"
 DEPEND="${RDEPEND}
-	doc? ( virtual/texi2dvi )
+	virtual/texi2dvi
 	test? (
 		dev-texlive/texlive-langgerman
 		dev-texlive/texlive-fontsrecommended
@@ -36,20 +36,13 @@
 	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
+
+	cd "${S}/doc"
+	emake realclean
+	emake -j1
 }
 
 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
+	emake DESTDIR="${ED}/usr" -j1 install install-info
 }





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-12-05  9:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-03 16:14 [gentoo-commits] gentoo-x86 commit in dev-tex/latex2rtf: ChangeLog latex2rtf-2.3.8.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2014-12-05  9:44 Alexis Ballier (aballier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox