diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-11-26 17:41:38 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-11-26 17:41:38 +0000 |
commit | 56bb39dd3b1e2cb852ae1e0c4f8b97aa4aa9d0f7 (patch) | |
tree | 2c1a300673f968e3a000206a416d6f6573e6b2b3 /dev-tex/latexmk | |
parent | Version bump. (diff) | |
download | gentoo-2-56bb39dd3b1e2cb852ae1e0c4f8b97aa4aa9d0f7.tar.gz gentoo-2-56bb39dd3b1e2cb852ae1e0c4f8b97aa4aa9d0f7.tar.bz2 gentoo-2-56bb39dd3b1e2cb852ae1e0c4f8b97aa4aa9d0f7.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-tex/latexmk')
-rw-r--r-- | dev-tex/latexmk/ChangeLog | 7 | ||||
-rw-r--r-- | dev-tex/latexmk/latexmk-439.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/dev-tex/latexmk/ChangeLog b/dev-tex/latexmk/ChangeLog index 44801303ff03..6862dfab210f 100644 --- a/dev-tex/latexmk/ChangeLog +++ b/dev-tex/latexmk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-tex/latexmk # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/ChangeLog,v 1.68 2013/07/21 11:14:46 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/ChangeLog,v 1.69 2013/11/26 17:41:38 radhermit Exp $ + +*latexmk-439 (26 Nov 2013) + + 26 Nov 2013; Tim Harder <radhermit@gentoo.org> +latexmk-439.ebuild: + Version bump. 21 Jul 2013; Tim Harder <radhermit@gentoo.org> -latexmk-427a.ebuild, -latexmk-430a.ebuild, -latexmk-431.ebuild, -latexmk-433c.ebuild: diff --git a/dev-tex/latexmk/latexmk-439.ebuild b/dev-tex/latexmk/latexmk-439.ebuild new file mode 100644 index 000000000000..7352675a4463 --- /dev/null +++ b/dev-tex/latexmk/latexmk-439.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latexmk/latexmk-439.ebuild,v 1.1 2013/11/26 17:41:38 radhermit Exp $ + +EAPI=5 + +inherit bash-completion-r1 + +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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos" + +RDEPEND="virtual/latex-base + dev-lang/perl" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR} + +src_install() { + newbin latexmk.pl latexmk + doman latexmk.1 + dodoc CHANGES README latexmk.pdf latexmk.ps latexmk.txt + dodoc -r example_rcfiles extra-scripts + newbashcomp "${FILESDIR}"/completion.bash-2 ${PN} +} |