Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/dvipost/
Date: Thu, 17 Jan 2019 22:39:44
Message-Id: 1547764765.8fd8a9ea64cefee9af92ad3b10748fbe1f5c6f63.dilfridge@gentoo
1 commit: 8fd8a9ea64cefee9af92ad3b10748fbe1f5c6f63
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 17 22:39:25 2019 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 17 22:39:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fd8a9ea
7
8 dev-tex/dvipost: EAPI bump
9
10 Package-Manager: Portage-2.3.56, Repoman-2.3.12
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 dev-tex/dvipost/dvipost-1.1-r3.ebuild | 38 +++++++++++++++++++++++++++++++++++
14 1 file changed, 38 insertions(+)
15
16 diff --git a/dev-tex/dvipost/dvipost-1.1-r3.ebuild b/dev-tex/dvipost/dvipost-1.1-r3.ebuild
17 new file mode 100644
18 index 00000000000..a55059cb329
19 --- /dev/null
20 +++ b/dev-tex/dvipost/dvipost-1.1-r3.ebuild
21 @@ -0,0 +1,38 @@
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 eutils toolchain-funcs
28 +
29 +DESCRIPTION="post processor for dvi files"
30 +HOMEPAGE="http://efeu.cybertec.at/index_en.html"
31 +SRC_URI="http://efeu.cybertec.at/dist/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-macos"
36 +IUSE=""
37 +
38 +src_prepare() {
39 + tc-export CC
40 + eapply "${FILESDIR}"/${PV}-ldflags.patch
41 + default
42 +}
43 +
44 +src_compile() {
45 + emake
46 +}
47 +
48 +src_install() {
49 + dobin dvipost
50 + dosym dvipost /usr/bin/pptex
51 + dosym dvipost /usr/bin/pplatex
52 +
53 + insinto ${TEXMF}/tex/latex/misc/
54 + insopts -m0644
55 + doins dvipost.sty
56 +
57 + dodoc dvipost.doc CHANGELOG NOTES README dvipost.html
58 + newman "${S}"/dvipost.man dvipost.1
59 +}