diff options
author | Jonas Stein <jstein@gentoo.org> | 2017-02-24 17:07:21 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-05-25 23:10:41 +0200 |
commit | b5b96873140d8b176aa570d87d652e17af1cf821 (patch) | |
tree | bb55f4088de612e341325a7dfca5fbf136837ca3 /dev-tex/minted/minted-2.4.1.ebuild | |
parent | dev-python/python-efl: version bump. (diff) | |
download | gentoo-b5b96873140d8b176aa570d87d652e17af1cf821.tar.gz gentoo-b5b96873140d8b176aa570d87d652e17af1cf821.tar.bz2 gentoo-b5b96873140d8b176aa570d87d652e17af1cf821.zip |
dev-tex/minted: version bump to 2.4.1.
Gentoo-Bug: https://bugs.gentoo.org/596586
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4074
Diffstat (limited to 'dev-tex/minted/minted-2.4.1.ebuild')
-rw-r--r-- | dev-tex/minted/minted-2.4.1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-tex/minted/minted-2.4.1.ebuild b/dev-tex/minted/minted-2.4.1.ebuild new file mode 100644 index 000000000000..927a7cfd7d4a --- /dev/null +++ b/dev-tex/minted/minted-2.4.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit latex-package eutils + +DESCRIPTION="LaTeX package for source code syntax highlighting" +HOMEPAGE="https://github.com/gpoore/minted" +SRC_URI="https://github.com/gpoore/minted/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="|| ( BSD LPPL-1.3 LPPL-1.3b LPPL-1.3c )" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc" + +DEPEND="" +RDEPEND=" + dev-texlive/texlive-latexextra + dev-python/pygments" + +S="${WORKDIR}"/${P}/source + +src_install() { + LATEX_DOC_ARGUMENTS='-shell-escape' + latex-package_src_install + dodoc "${S}"/../*md +} |