summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2014-12-05 09:44:26 +0000
committerAlexis Ballier <aballier@gentoo.org>2014-12-05 09:44:26 +0000
commit5ea6e998cf288996868196cf5ce3aa6e0d48ff62 (patch)
tree007b09656f0bc2bf804338c907c7b8371df9aa02 /dev-tex
parentfix bug 530178, parallel build on >2.20140311-r7 (diff)
downloadgentoo-2-5ea6e998cf288996868196cf5ce3aa6e0d48ff62.tar.gz
gentoo-2-5ea6e998cf288996868196cf5ce3aa6e0d48ff62.tar.bz2
gentoo-2-5ea6e998cf288996868196cf5ce3aa6e0d48ff62.zip
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)
Diffstat (limited to 'dev-tex')
-rw-r--r--dev-tex/latex2rtf/ChangeLog6
-rw-r--r--dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild23
2 files changed, 13 insertions, 16 deletions
diff --git a/dev-tex/latex2rtf/ChangeLog b/dev-tex/latex2rtf/ChangeLog
index 9a4988743751..4b7e51a12dcf 100644
--- a/dev-tex/latex2rtf/ChangeLog
+++ b/dev-tex/latex2rtf/ChangeLog
@@ -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
diff --git a/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild b/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild
index 64e193ad0138..69b410773eff 100644
--- a/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild
+++ b/dev-tex/latex2rtf/latex2rtf-2.3.8.ebuild
@@ -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 @@ 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"
+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 @@ src_compile() {
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
}