Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/g-brief/
Date: Sun, 27 Oct 2019 12:35:20
Message-Id: 1572179702.ff78c9198bf7f6491d9ff4d01dc85f42bca19203.sping@gentoo
1 commit: ff78c9198bf7f6491d9ff4d01dc85f42bca19203
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 27 12:28:46 2019 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 27 12:35:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff78c919
7
8 dev-tex/g-brief: EAPI 7
9
10 Bug: https://bugs.gentoo.org/697336
11 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
12 Package-Manager: Portage-2.3.78, Repoman-2.3.16
13
14 dev-tex/g-brief/g-brief-4.0.2-r1.ebuild | 33 +++++++++++++++++++++++++++++++++
15 1 file changed, 33 insertions(+)
16
17 diff --git a/dev-tex/g-brief/g-brief-4.0.2-r1.ebuild b/dev-tex/g-brief/g-brief-4.0.2-r1.ebuild
18 new file mode 100644
19 index 00000000000..569461d81b3
20 --- /dev/null
21 +++ b/dev-tex/g-brief/g-brief-4.0.2-r1.ebuild
22 @@ -0,0 +1,33 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +inherit latex-package
29 +
30 +S="${WORKDIR}"/${PN}
31 +
32 +# checksum from official ftp site changes frequently so we mirror it
33 +DESCRIPTION="LaTeX styles for formless letters in German or English"
34 +SRC_URI="mirror://gentoo/${P}.zip"
35 +HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/g-brief/"
36 +LICENSE="LPPL-1.2"
37 +
38 +IUSE=""
39 +SLOT="0"
40 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
41 +
42 +RDEPEND="dev-texlive/texlive-langgerman"
43 +DEPEND="${RDEPEND}
44 + app-arch/unzip"
45 +
46 +TEXMF="/usr/share/texmf-site"
47 +
48 +src_compile() {
49 + # latex chokes if these file exist, bug #573374
50 + rm -f g-brief.drv g-brief.cls g-brief.sty g-brief2.cls g-brief2.sty beispiel.tex beispiel2.tex || die
51 + latex-package_src_compile
52 + # Now that the source is processed, remove it so that it is not (wrongly)
53 + # reprocessed at src_install.
54 + rm -f g-brief.dtx || die
55 +}