Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/xcolor/
Date: Wed, 08 Feb 2017 17:59:32
Message-Id: 1486576743.dbca25f70470eb3997f3f6ed9bcbb0ce8d8b114f.aballier@gentoo
1 commit: dbca25f70470eb3997f3f6ed9bcbb0ce8d8b114f
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 8 17:59:03 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 8 17:59:03 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbca25f7
7
8 dev-tex/xcolor: Bump to 2.12
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-tex/xcolor/Manifest | 1 +
13 dev-tex/xcolor/xcolor-2.12.ebuild | 35 +++++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-tex/xcolor/Manifest b/dev-tex/xcolor/Manifest
17 index 836e109ffc..852f93f091 100644
18 --- a/dev-tex/xcolor/Manifest
19 +++ b/dev-tex/xcolor/Manifest
20 @@ -1 +1,2 @@
21 DIST xcolor211.zip 745959 SHA256 509cc5725339caa2ea5d2fe75cd69e96bb8b95ba2d8c1294ed6915c171c9ab3d SHA512 bd504ad3ffce1e9c53dd8588e19568f673f92100a3aded5278ed6893525cc68e505eacce99b563bd94e8844ba6d3bc443c529a2d46505897daa6d30b6d61f430 WHIRLPOOL 25abb29d034a274f0f970534807ea139fbd452777046166bfa2e0f0ceb5fec6699cac79103503e97db13b4a39c55e46f0114de189d9b5b46840f2a71f64d84e2
22 +DIST xcolor212.zip 769972 SHA256 aca084293bff364d869b83bcfb30f779ab065c479e03b2f1027a022e275a026c SHA512 66255b29aa7d2eb11239fa9ce1a12e2b9397028d84b1503fb5bbf06276b597263224eccd064f1e87f7bdb2e96b0ae2d564bb7cb99b92907ccfc2468492a3479e WHIRLPOOL a9a57943be4dccc1e6ff536b05b5e34fbe79b77714d2c14cfd5c0d27cc172b85a1e8d155230b74056ad288b84482a68bbf1a3706be53fcf6f5f6ebbd8d5d955a
23
24 diff --git a/dev-tex/xcolor/xcolor-2.12.ebuild b/dev-tex/xcolor/xcolor-2.12.ebuild
25 new file mode 100644
26 index 0000000000..7ef1a07364
27 --- /dev/null
28 +++ b/dev-tex/xcolor/xcolor-2.12.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +inherit latex-package
35 +
36 +DESCRIPTION="xcolor -- easy driver-independent access to colors"
37 +HOMEPAGE="http://www.ukern.de/tex/xcolor.html"
38 +SRC_URI="http://www.ukern.de/tex/xcolor/ctan/${P//[.-]/}.zip"
39 +
40 +LICENSE="LPPL-1.2"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
43 +IUSE="doc"
44 +
45 +RDEPEND="dev-texlive/texlive-latex"
46 +
47 +DEPEND="${RDEPEND}
48 + doc? (
49 + dev-texlive/texlive-pstricks
50 + dev-texlive/texlive-latexextra
51 + )
52 + app-arch/unzip"
53 +
54 +S="${WORKDIR}/${PN}"
55 +
56 +TEXMF="/usr/share/texmf-site"
57 +
58 +src_install() {
59 + export VARTEXFONTS="${T}/fonts"
60 +
61 + latex-package_src_install || die
62 +
63 + dodoc README ChangeLog
64 +}