Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/pgf/
Date: Sun, 18 Aug 2019 17:59:45
Message-Id: 1566151178.db6bf8f0eb668fea358d6f6dd4401c335484c416.zlogene@gentoo
1 commit: db6bf8f0eb668fea358d6f6dd4401c335484c416
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 18 17:59:16 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 18 17:59:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db6bf8f0
7
8 dev-tex/pgf: Drop old
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 dev-tex/pgf/pgf-3.1.4b.ebuild | 40 ----------------------------------------
14 1 file changed, 40 deletions(-)
15
16 diff --git a/dev-tex/pgf/pgf-3.1.4b.ebuild b/dev-tex/pgf/pgf-3.1.4b.ebuild
17 deleted file mode 100644
18 index b34e9dfc094..00000000000
19 --- a/dev-tex/pgf/pgf-3.1.4b.ebuild
20 +++ /dev/null
21 @@ -1,40 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit latex-package
28 -
29 -DESCRIPTION="The TeX Portable Graphic Format"
30 -HOMEPAGE="https://github.com/pgf-tikz/pgf"
31 -SRC_URI=" https://github.com/pgf-tikz/pgf/archive/${PV}.tar.gz -> ${P}.tar.gz
32 - doc? ( https://github.com/pgf-tikz/pgf/releases/download/${PV}/pgfmanual.pdf -> ${P}-pgfmanual.pdf )"
33 -
34 -LICENSE="GPL-2 LPPL-1.3c FDL-1.2"
35 -SLOT="0"
36 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~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"
37 -IUSE="doc source"
38 -
39 -RDEPEND="dev-texlive/texlive-latexrecommended
40 - dev-tex/xcolor"
41 -
42 -src_install() {
43 - insinto "${TEXMF}"
44 - doins -r tex
45 -
46 - if use source ; then
47 - doins -r source
48 - fi
49 -
50 - cd "${S}/doc/generic/pgf" || die
51 - dodoc AUTHORS ChangeLog README
52 - if use doc; then
53 - insinto /usr/share/doc/${PF}/texdoc
54 - # pgfmanual is now split from the main tar archive
55 - newdoc "${DISTDIR}/${P}-pgfmanual.pdf" pgfmanual.pdf
56 - doins -r images macros text-en version-*
57 -
58 - dosym "/usr/share/doc/${PF}/texdoc" "${TEXMF}/doc/latex/${PN}"
59 - docompress -x "/usr/share/doc/${PF}/texdoc/"
60 - fi
61 -}