Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/kile/
Date: Sun, 13 May 2018 06:56:56
Message-Id: 1526194593.7ea1c78294c7721f9235fd2f72f2587b319b1af8.asturm@gentoo
1 commit: 7ea1c78294c7721f9235fd2f72f2587b319b1af8
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 12 18:31:53 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 13 06:56:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ea1c782
7
8 app-editors/kile: 2.9.92 (3.0 beta2) version bump
9
10 This time with translations.
11
12 Package-Manager: Portage-2.3.36, Repoman-2.3.9
13
14 app-editors/kile/Manifest | 1 +
15 app-editors/kile/kile-2.9.92.ebuild | 72 +++++++++++++++++++++++++++++++++++++
16 2 files changed, 73 insertions(+)
17
18 diff --git a/app-editors/kile/Manifest b/app-editors/kile/Manifest
19 index 434643de4f5..4452d76fb0c 100644
20 --- a/app-editors/kile/Manifest
21 +++ b/app-editors/kile/Manifest
22 @@ -1,2 +1,3 @@
23 DIST kile-2.9.91_p20171209.tar.gz 3624273 BLAKE2B d6e4798869b8f5be7a2a6b00b1b067957245373f560a7485334ce1f3f932670a0cb8ef0b551fde2eea1d54a6114e8405025dbd3daea587a2d30b74fe614d332e SHA512 b7e4a6e434057cf04e8712f543cdd74a40659843b1e2777d0a031b5a665e1de34e36ec9b3f5d9bd3bf9202f9dca8595fcee9a81ab4875bc4b6da3a2fb449b2c6
24 DIST kile-2.9.91_p20180419.tar.gz 3635059 BLAKE2B 1f7c20e8881bcdd20f3230e8a8608dd816a5f00435734941280c4da75ca6460514a1c3dc0f3962d684f3e0a458ae427772cdf1cafbbe8f44be7a9e804ffcec05 SHA512 bb50f169d6e9630cc463f4615af06826608b640a7e43d5d671477fad6a199fcdc02c38138c8a211ce563f4e1f82ddd7cceea29a3e60b43e35c52076958818721
25 +DIST kile-2.9.92.tar.bz2 8556142 BLAKE2B dd18ece7394439de3c0037fbea7c66316c5ee457bd4ad8c35f8519713f917e1c1641c806290303c26dd9e31e2f39346bc35091b211ca23a2d342332388d18c3f SHA512 e3af0c2cb1a0970428e2d772ef5025ead67aee94cdc03b6ec173de5628e8d4619f74296a1734eac8241939d40a05b805b8bd33bb4c27a1c19ad47fb35087cf7d
26
27 diff --git a/app-editors/kile/kile-2.9.92.ebuild b/app-editors/kile/kile-2.9.92.ebuild
28 new file mode 100644
29 index 00000000000..d6cfdab6acc
30 --- /dev/null
31 +++ b/app-editors/kile/kile-2.9.92.ebuild
32 @@ -0,0 +1,72 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +KDE_HANDBOOK="forceoptional"
39 +inherit kde5
40 +
41 +DESCRIPTION="Latex Editor and TeX shell based on KDE Frameworks"
42 +HOMEPAGE="https://kile.sourceforge.io/"
43 +[[ ${PV} != *9999* ]] && SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
44 +
45 +LICENSE="FDL-1.2 GPL-2"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="+pdf +png"
48 +
49 +DEPEND="
50 + $(add_frameworks_dep kconfig)
51 + $(add_frameworks_dep kcoreaddons)
52 + $(add_frameworks_dep kcrash)
53 + $(add_frameworks_dep kdbusaddons)
54 + $(add_frameworks_dep kdoctools)
55 + $(add_frameworks_dep kguiaddons)
56 + $(add_frameworks_dep khtml)
57 + $(add_frameworks_dep ki18n)
58 + $(add_frameworks_dep kiconthemes)
59 + $(add_frameworks_dep kinit)
60 + $(add_frameworks_dep kio)
61 + $(add_frameworks_dep kparts)
62 + $(add_frameworks_dep ktexteditor)
63 + $(add_frameworks_dep kwindowsystem)
64 + $(add_frameworks_dep kxmlgui)
65 + $(add_kdeapps_dep okular)
66 + $(add_qt_dep qtdbus)
67 + $(add_qt_dep qtscript)
68 + $(add_qt_dep qttest)
69 + $(add_qt_dep qtwidgets)
70 + pdf? ( app-text/poppler[qt5] )
71 +"
72 +RDEPEND="${DEPEND}
73 + !app-editors/kile:4
74 + $(add_kdeapps_dep konsole)
75 + $(add_kdeapps_dep okular 'pdf?')
76 + virtual/latex-base
77 + virtual/tex-base
78 + pdf? (
79 + >=app-text/texlive-core-2014
80 + app-text/ghostscript-gpl
81 + )
82 + png? (
83 + app-text/dvipng
84 + virtual/imagemagick-tools[png?]
85 + )
86 +"
87 +
88 +DOCS=( kile-remote-control.txt )
89 +
90 +src_prepare() {
91 + kde5_src_prepare
92 +
93 + # I know upstream wants to help us but it doesn't work..
94 + sed -e '/INSTALL( FILES AUTHORS/s/^/#DISABLED /' \
95 + -i CMakeLists.txt || die
96 +}
97 +
98 +src_configure() {
99 + local mycmakeargs=(
100 + $(cmake-utils_use_find_package pdf Poppler)
101 + )
102 +
103 + kde5_src_configure
104 +}