summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Buisse <nattfodd@gentoo.org>2005-11-28 10:41:42 +0000
committerAlexandre Buisse <nattfodd@gentoo.org>2005-11-28 10:41:42 +0000
commitb63b53374ccf95115ef6a3e3e1333b17b95b6212 (patch)
treececd04efb04baf46d6357bd7047c4786971a0d82 /dev-tex/latexdiff/latexdiff-0.3.ebuild
parentNew release. (diff)
downloadgentoo-2-b63b53374ccf95115ef6a3e3e1333b17b95b6212.tar.gz
gentoo-2-b63b53374ccf95115ef6a3e3e1333b17b95b6212.tar.bz2
gentoo-2-b63b53374ccf95115ef6a3e3e1333b17b95b6212.zip
Bump to 0.3 and added myself as maintainer.
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'dev-tex/latexdiff/latexdiff-0.3.ebuild')
-rw-r--r--dev-tex/latexdiff/latexdiff-0.3.ebuild31
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-tex/latexdiff/latexdiff-0.3.ebuild b/dev-tex/latexdiff/latexdiff-0.3.ebuild
new file mode 100644
index 000000000000..c1f98f4f676d
--- /dev/null
+++ b/dev-tex/latexdiff/latexdiff-0.3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexdiff/latexdiff-0.3.ebuild,v 1.1 2005/11/28 10:41:42 nattfodd Exp $
+
+DESCRIPTION="Compare two latex files and mark up significant differences"
+HOMEPAGE="http://www.ctan.org/tex-archive/support/latexdiff/"
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+
+IUSE="static"
+
+DEPEND=">=dev-lang/perl-5.8
+ !static? ( dev-perl/Algorithm-Diff )"
+
+
+src_install() {
+ dodoc CHANGES LICENSE README
+ dodoc latexdiff-man.pdf
+
+ if use static ; then
+ newbin latexdiff-so latexdiff
+ else
+ dobin latexdiff
+ fi
+ dobin latexrevise latexdiff-cvs
+ doman latexdiff.1 latexrevise.1 latexdiff-cvs.1
+}
+