blob: 34c409a77803575ab4775812e00afcd20bf0ee63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexdiff/latexdiff-0.2.ebuild,v 1.2 2004/12/28 21:07:56 absinthe Exp $
DESCRIPTION="latexdiff compares two latex files and marks up significant differences between them"
HOMEPAGE="http://www.ctan.org/tex-archive/support/latexdiff/"
# Taken from: http://www.ctan.org/tex-archive/support/latexdiff/
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=dev-lang/perl-5.8.4-r1
>=dev-perl/Algorithm-Diff-1.15"
src_install() {
dodoc CHANGES LICENSE README
insinto /usr/share/doc/${P}
doins latexdiff-man.pdf
dobin latexdiff latexrevise
doman latexdiff.1 latexrevise.1
}
|