Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/curve/
Date: Wed, 27 Feb 2019 04:34:56
Message-Id: 1551242078.e3bd81f0b1f93ce1cb0e450365a4167a0b559c4b.bman@gentoo
1 commit: e3bd81f0b1f93ce1cb0e450365a4167a0b559c4b
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Aug 22 13:14:24 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 27 04:34:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3bd81f0
7
8 dev-tex/curve: EAPI7 revbump
9
10 Closes: https://bugs.gentoo.org/664256
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/9663
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 dev-tex/curve/curve-1.16-r1.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
16 1 file changed, 38 insertions(+)
17
18 diff --git a/dev-tex/curve/curve-1.16-r1.ebuild b/dev-tex/curve/curve-1.16-r1.ebuild
19 new file mode 100644
20 index 00000000000..fd710c2dbb9
21 --- /dev/null
22 +++ b/dev-tex/curve/curve-1.16-r1.ebuild
23 @@ -0,0 +1,38 @@
24 +# Copyright 1999-2018 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +inherit latex-package
30 +
31 +DESCRIPTION="LaTeX style for a CV (curriculum vitae) with flavour option"
32 +HOMEPAGE="https://ctan.org/tex-archive/macros/latex/contrib/curve/"
33 +SRC_URI="http://mirrors.ctan.org/macros/latex/contrib/${PN}.zip -> ${P}.zip"
34 +
35 +LICENSE="LPPL-1.2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
38 +IUSE="doc examples"
39 +
40 +RDEPEND=">=dev-texlive/texlive-latexextra-2010"
41 +DEPEND="${RDEPEND}
42 + app-arch/unzip"
43 +
44 +S=${WORKDIR}/${PN}
45 +
46 +TEXMF=/usr/share/texmf-site
47 +
48 +src_install() {
49 + dodoc README NEWS THANKS
50 +
51 + latex-package_src_doinstall styles
52 +
53 + if use doc ; then
54 + latex-package_src_doinstall pdf
55 + fi
56 +
57 + if use examples ; then
58 + insinto /usr/share/doc/${PF}/example
59 + doins examples/*
60 + fi
61 +}