blob: 4b1bb0323849a35b5baee2d7302b688e79fe58eb (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/minted/minted-1.7.ebuild,v 1.1 2013/01/11 14:40:46 jlec Exp $
EAPI=5
inherit latex-package
DESCRIPTION="LaTeX package that facilitates expressive syntax highlighting in using the powerful Pygments library"
HOMEPAGE="https://code.google.com/p/minted/"
SRC_URI="https://minted.googlecode.com/files/${PN}-v${PV}.zip"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND="
dev-texlive/texlive-latexextra
dev-python/pygments"
S="${WORKDIR}"/
src_install() {
latex-package_src_install
dodoc README
}
|