diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-03-10 10:15:29 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-03-10 10:15:29 +0000 |
commit | 80da64a0a4e12d759642ac179bc089d62812da68 (patch) | |
tree | b18c0810ba9062a8e767be14fdb421df1296635f /dev-tex | |
parent | version bump (diff) | |
download | gentoo-2-80da64a0a4e12d759642ac179bc089d62812da68.tar.gz gentoo-2-80da64a0a4e12d759642ac179bc089d62812da68.tar.bz2 gentoo-2-80da64a0a4e12d759642ac179bc089d62812da68.zip |
remove old
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/latex2rtf/ChangeLog | 8 | ||||
-rw-r--r-- | dev-tex/latex2rtf/files/latex2rtf-1.9.19-makefile.patch | 31 | ||||
-rw-r--r-- | dev-tex/latex2rtf/latex2rtf-1.9.19.ebuild | 48 | ||||
-rw-r--r-- | dev-tex/latex2rtf/latex2rtf-2.1.0.ebuild | 43 |
4 files changed, 6 insertions, 124 deletions
diff --git a/dev-tex/latex2rtf/ChangeLog b/dev-tex/latex2rtf/ChangeLog index efee56def501..6e16b3518542 100644 --- a/dev-tex/latex2rtf/ChangeLog +++ b/dev-tex/latex2rtf/ChangeLog @@ -1,6 +1,10 @@ # 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.42 2012/10/10 12:56:27 aballier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/ChangeLog,v 1.43 2013/03/10 10:15:29 aballier Exp $ + + 10 Mar 2013; Alexis Ballier <aballier@gentoo.org> -latex2rtf-1.9.19.ebuild, + -files/latex2rtf-1.9.19-makefile.patch, -latex2rtf-2.1.0.ebuild: + remove old *latex2rtf-2.3.1 (10 Oct 2012) diff --git a/dev-tex/latex2rtf/files/latex2rtf-1.9.19-makefile.patch b/dev-tex/latex2rtf/files/latex2rtf-1.9.19-makefile.patch deleted file mode 100644 index 49c075ffcd02..000000000000 --- a/dev-tex/latex2rtf/files/latex2rtf-1.9.19-makefile.patch +++ /dev/null @@ -1,31 +0,0 @@ -Index: latex2rtf-1.9.19/Makefile -=================================================================== ---- latex2rtf-1.9.19.orig/Makefile -+++ latex2rtf-1.9.19/Makefile -@@ -5,7 +5,7 @@ MKDIR=mkdir -p - TAR=gnutar - RM=rm - --CFLAGS:=-DUNIX -+CFLAGS:=$(CFLAGS) -DUNIX - #CFLAGS:=-DMSDOS #Windows/DOS - #CFLAGS:=-DMAC_CLASSIC #MacOS 8/9 - #CFLAGS:=-DOS2 #OS/2 -@@ -39,7 +39,7 @@ CFG_INSTALL=$(PREFIX)/share/latex2rtf/cf - - CFLAGS:=$(CFLAGS) -g -Wall -fsigned-char - --LIBS= -+LIBS= -lm - #LIBS=-lMallocDebug -force_flat_namespace - - VERSION:="`scripts/version`" -@@ -141,7 +141,7 @@ OBJS=fonts.o direct.o encodings.o comman - all : checkdir latex2rtf - - latex2rtf: $(OBJS) $(HDRS) -- $(CC) $(CFLAGS) $(LINK_FLAGS) $(OBJS) $(LIBS) -o $(BINARY_NAME) -+ $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $(BINARY_NAME) - - cfg.o: Makefile cfg.c - $(CC) $(CFLAGS) -DCFGDIR=\"$(CFG_INSTALL)\" -c cfg.c -o cfg.o diff --git a/dev-tex/latex2rtf/latex2rtf-1.9.19.ebuild b/dev-tex/latex2rtf/latex2rtf-1.9.19.ebuild deleted file mode 100644 index 1c655474345d..000000000000 --- a/dev-tex/latex2rtf/latex2rtf-1.9.19.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/latex2rtf-1.9.19.ebuild,v 1.15 2011/10/05 19:04:40 aballier Exp $ - -inherit eutils 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" - -DEPEND="virtual/latex-base - media-gfx/imagemagick - doc? ( virtual/texi2dvi ) - test? ( - dev-texlive/texlive-langgerman - dev-texlive/texlive-fontsrecommended - dev-tex/latex2html - )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-makefile.patch" -} - -src_compile() { - export VARTEXFONTS="${T}/fonts" - emake PREFIX="/usr" CC=$(tc-getCC) || die "emake failed" - if use doc; then - cd "${S}/doc" - emake clean || die "cleaning docs failed" - emake || die "generating docs failed" - fi -} - -src_install() { - dodoc README ChangeLog doc/credits - emake PREFIX="${D}/usr" MAN_INSTALL="${D}/usr/share/man/man1" SUPPORT_INSTALL="${D}/usr/share/doc/${PF}" install || die "make install failed" - # if doc is not used, only the text version is intalled. - if use doc; then - emake INFO_INSTALL="${D}/usr/share/info" install-info || die "installing info documentation failed" - fi -} diff --git a/dev-tex/latex2rtf/latex2rtf-2.1.0.ebuild b/dev-tex/latex2rtf/latex2rtf-2.1.0.ebuild deleted file mode 100644 index 1f17be6a6546..000000000000 --- a/dev-tex/latex2rtf/latex2rtf-2.1.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex2rtf/latex2rtf-2.1.0.ebuild,v 1.2 2011/10/05 19:04:41 aballier Exp $ - -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" - -RDEPEND="virtual/latex-base - media-gfx/imagemagick" -DEPEND="${RDEPEND} - doc? ( virtual/texi2dvi ) - test? ( - dev-texlive/texlive-langgerman - dev-texlive/texlive-fontsrecommended - dev-tex/latex2html - )" - -src_compile() { - export VARTEXFONTS="${T}/fonts" - emake PREFIX="/usr" CC="$(tc-getCC)" || die "emake failed" - if use doc; then - cd "${S}/doc" - emake clean || die "cleaning docs failed" - emake || die "generating docs failed" - fi -} - -src_install() { - dodoc README ChangeLog doc/credits - emake PREFIX="${D}/usr" MAN_INSTALL="${D}/usr/share/man/man1" SUPPORT_INSTALL="${D}/usr/share/doc/${PF}" install || die "make install failed" - # if doc is not used, only the text version is intalled. - if use doc; then - emake INFO_INSTALL="${D}/usr/share/info" install-info || die "installing info documentation failed" - fi -} |