diff options
author | 2015-02-28 21:25:14 +0000 | |
---|---|---|
committer | 2015-02-28 21:25:14 +0000 | |
commit | c5da4f96eac7a76078540b7b21df0e1da16f4fda (patch) | |
tree | 7ef65ff5c00f2b79b619364972b3e8625ca2d3d8 /dev-tex | |
parent | add version 0.25.0 (diff) | |
download | gentoo-2-c5da4f96eac7a76078540b7b21df0e1da16f4fda.tar.gz gentoo-2-c5da4f96eac7a76078540b7b21df0e1da16f4fda.tar.bz2 gentoo-2-c5da4f96eac7a76078540b7b21df0e1da16f4fda.zip |
version bump
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/latexdiff/ChangeLog | 10 | ||||
-rw-r--r-- | dev-tex/latexdiff/latexdiff-1.0.4.ebuild | 32 |
2 files changed, 39 insertions, 3 deletions
diff --git a/dev-tex/latexdiff/ChangeLog b/dev-tex/latexdiff/ChangeLog index ae4643967b26..628aaca7ddd3 100644 --- a/dev-tex/latexdiff/ChangeLog +++ b/dev-tex/latexdiff/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-tex/latexdiff -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexdiff/ChangeLog,v 1.27 2012/05/09 17:10:42 aballier Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexdiff/ChangeLog,v 1.28 2015/02/28 21:25:14 ottxor Exp $ + +*latexdiff-1.0.4 (28 Feb 2015) + + 28 Feb 2015; Christoph Junghans <ottxor@gentoo.org> +latexdiff-1.0.4.ebuild: + version bump 09 May 2012; Alexis Ballier <aballier@gentoo.org> latexdiff-0.5.ebuild: keyword ~amd64-fbsd @@ -92,4 +97,3 @@ +latexdiff-0.2.ebuild: Initial import. Ebuild submitted by Anders Bo Rasmussen <gentoo@fuzz.dk>; bug #68033. - diff --git a/dev-tex/latexdiff/latexdiff-1.0.4.ebuild b/dev-tex/latexdiff/latexdiff-1.0.4.ebuild new file mode 100644 index 000000000000..cffab4590b61 --- /dev/null +++ b/dev-tex/latexdiff/latexdiff-1.0.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexdiff/latexdiff-1.0.4.ebuild,v 1.1 2015/02/28 21:25:14 ottxor Exp $ + +EAPI=5 + +DESCRIPTION="Compare two latex files and mark up significant differences" +HOMEPAGE="http://www.ctan.org/tex-archive/support/latexdiff/ https://github.com/ftilmann/latexdiff/" +SRC_URI="http://mirror.ctan.org/support/${PN}.zip -> ${P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" + +IUSE="" + +RDEPEND=">=dev-lang/perl-5.8 + dev-perl/Algorithm-Diff" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR}/${PN} + +src_test() { + emake test-ext +} + +src_install() { + dobin latexdiff latexrevise latexdiff-vc + doman latexdiff.1 latexrevise.1 latexdiff-vc.1 + dodoc README doc/latexdiff-man.pdf +} |