summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2011-07-27 13:30:56 +0000
committerAlexis Ballier <aballier@gentoo.org>2011-07-27 13:30:56 +0000
commit6eef1d9357cc934c1b65d4006311355fa3c9de2a (patch)
tree7ea623c7eb3f959d0214afcd7b54aa742ea96f0e /dev-tex/latexmk
parentversion bump (diff)
downloadgentoo-2-6eef1d9357cc934c1b65d4006311355fa3c9de2a.tar.gz
gentoo-2-6eef1d9357cc934c1b65d4006311355fa3c9de2a.tar.bz2
gentoo-2-6eef1d9357cc934c1b65d4006311355fa3c9de2a.zip
version bump
(Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
Diffstat (limited to 'dev-tex/latexmk')
-rw-r--r--dev-tex/latexmk/ChangeLog7
-rw-r--r--dev-tex/latexmk/latexmk-425.ebuild32
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-tex/latexmk/ChangeLog b/dev-tex/latexmk/ChangeLog
index 5badc36b48a1..a695ed530cf7 100644
--- a/dev-tex/latexmk/ChangeLog
+++ b/dev-tex/latexmk/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-tex/latexmk
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/ChangeLog,v 1.26 2011/06/14 03:26:31 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/ChangeLog,v 1.27 2011/07/27 13:30:56 aballier Exp $
+
+*latexmk-425 (27 Jul 2011)
+
+ 27 Jul 2011; Alexis Ballier <aballier@gentoo.org> +latexmk-425.ebuild:
+ version bump
14 Jun 2011; Matt Turner <mattst88@gentoo.org> latexmk-423a.ebuild:
Added ~mips, bug 342513
diff --git a/dev-tex/latexmk/latexmk-425.ebuild b/dev-tex/latexmk/latexmk-425.ebuild
new file mode 100644
index 000000000000..6eae74484760
--- /dev/null
+++ b/dev-tex/latexmk/latexmk-425.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/latexmk-425.ebuild,v 1.1 2011/07/27 13:30:56 aballier Exp $
+
+EAPI=4
+
+inherit bash-completion
+
+DESCRIPTION="Perl script for automatically building LaTeX documents."
+HOMEPAGE="http://www.phys.psu.edu/~collins/software/latexmk/"
+SRC_URI="http://www.phys.psu.edu/~collins/software/latexmk/${P}.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-macos"
+IUSE=""
+
+RDEPEND="virtual/latex-base
+ dev-lang/perl"
+DEPEND="${RDEPEND}
+ app-arch/unzip"
+
+S=${WORKDIR}
+
+src_install() {
+ newbin latexmk.pl latexmk
+ dodoc CHANGES README latexmk.pdf latexmk.ps latexmk.txt
+ doman latexmk.1
+ insinto /usr/share/doc/${PF}
+ doins -r example_rcfiles extra-scripts
+ dobashcompletion "${FILESDIR}"/completion.bash-2 ${PN}
+}