Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pdfjam/
Date: Sun, 27 Oct 2019 12:22:30
Message-Id: 1572178924.4c05b437ebc36df60706ab64e15bd6eb671be8ef.sping@gentoo
1 commit: 4c05b437ebc36df60706ab64e15bd6eb671be8ef
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 27 12:20:01 2019 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 27 12:22:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c05b437
7
8 app-text/pdfjam: EAPI 7
9
10 Closes: https://bugs.gentoo.org/697374
11 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
12 Package-Manager: Portage-2.3.78, Repoman-2.3.16
13
14 app-text/pdfjam/pdfjam-2.08-r1.ebuild | 24 ++++++++++++++++++++++++
15 1 file changed, 24 insertions(+)
16
17 diff --git a/app-text/pdfjam/pdfjam-2.08-r1.ebuild b/app-text/pdfjam/pdfjam-2.08-r1.ebuild
18 new file mode 100644
19 index 00000000000..119a213fce2
20 --- /dev/null
21 +++ b/app-text/pdfjam/pdfjam-2.08-r1.ebuild
22 @@ -0,0 +1,24 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +MY_PV=${PV/./}
29 +DESCRIPTION="pdfnup, pdfjoin and pdf90"
30 +HOMEPAGE="http://www.warwick.ac.uk/go/pdfjam"
31 +SRC_URI="http://www.warwick.ac.uk/go/pdfjam/${PN}_${MY_PV}.tgz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
36 +IUSE=""
37 +S="${WORKDIR}"/${PN}
38 +
39 +DEPEND="virtual/latex-base"
40 +RDEPEND="${DEPEND}"
41 +
42 +src_install() {
43 + dobin bin/*
44 + dodoc PDFjam-README.html
45 + doman man1/*
46 +}