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, 03 Sep 2017 09:50:19
Message-Id: 1504432199.d6cde1b9aedd886d9140258074feb3d79d971372.asturm@gentoo
1 commit: d6cde1b9aedd886d9140258074feb3d79d971372
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 3 09:47:33 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 3 09:49:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6cde1b9
7
8 app-editors/kile: 2.9.91 version bump (3.0 beta1)
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 app-editors/kile/Manifest | 1 +
13 app-editors/kile/kile-2.9.91.ebuild | 74 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 75 insertions(+)
15
16 diff --git a/app-editors/kile/Manifest b/app-editors/kile/Manifest
17 index 6e062fc0439..93e20d54340 100644
18 --- a/app-editors/kile/Manifest
19 +++ b/app-editors/kile/Manifest
20 @@ -1 +1,2 @@
21 DIST kile-2.1.3.tar.bz2 4911212 SHA256 a063ec4fca1ba5a063ffdcdb538967af35ade01d71fa7db6ea691ba2cf88cea2 SHA512 820cb5e2579f243ce87409aa4d483a58b0a2cf1d86bff72dd12264570bfe72e7819c88aa4333080f8281e54e8315e2c11f961b41f13a6215913dfa4f7bd3feda WHIRLPOOL 1bc56ad82c72807fcf93ffeb4dbd4222a7660c00e852378a9007c7aa4a96a5130497ca23815a74c92f631fcb261dbf35f7d5453e849f6fb82c9f3c802058ab31
22 +DIST kile-2.9.91.tar.bz2 3461524 SHA256 08cb54cddc54c851d98b339f386d9aa20b3d71ff98ef078242fd52f684712d93 SHA512 08075adad7d75309148016bbd7f2c4b6f1d5c67808037666deffa49ac26d76cf4329ea39288c23122dabfbb6c83d15bf4f0a2bdaf1479d41064fa63098aba947 WHIRLPOOL 4767669228f59b9b8d88e75d1f33bcb7890556326a82b86ce779407a75f559cb69277800de7fb6fbceaa8c58468ec80774a8a716993d40724fc7100a5db76166
23
24 diff --git a/app-editors/kile/kile-2.9.91.ebuild b/app-editors/kile/kile-2.9.91.ebuild
25 new file mode 100644
26 index 00000000000..5ea787335dc
27 --- /dev/null
28 +++ b/app-editors/kile/kile-2.9.91.ebuild
29 @@ -0,0 +1,74 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +KDE_HANDBOOK="forceoptional"
36 +inherit kde5
37 +
38 +DESCRIPTION="Latex Editor and TeX shell based on KDE Frameworks"
39 +HOMEPAGE="http://kile.sourceforge.net/"
40 +[[ ${PV} != *9999* ]] && SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
41 +
42 +LICENSE="FDL-1.2 GPL-2"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="+pdf +png"
45 +
46 +DEPEND="
47 + $(add_frameworks_dep kconfig)
48 + $(add_frameworks_dep kcoreaddons)
49 + $(add_frameworks_dep kcrash)
50 + $(add_frameworks_dep kdbusaddons)
51 + $(add_frameworks_dep kdoctools)
52 + $(add_frameworks_dep kguiaddons)
53 + $(add_frameworks_dep ki18n)
54 + $(add_frameworks_dep kiconthemes)
55 + $(add_frameworks_dep kinit)
56 + $(add_frameworks_dep kio)
57 + $(add_frameworks_dep kparts)
58 + $(add_frameworks_dep ktexteditor)
59 + $(add_frameworks_dep kwindowsystem)
60 + $(add_frameworks_dep kxmlgui)
61 + $(add_kdeapps_dep okular)
62 + $(add_qt_dep qtdbus)
63 + $(add_qt_dep qtscript)
64 + $(add_qt_dep qttest)
65 + $(add_qt_dep qtwidgets)
66 + pdf? ( app-text/poppler[qt5] )
67 +"
68 +RDEPEND="${DEPEND}
69 + !app-editors/kile:4
70 + $(add_kdeapps_dep konsole)
71 + $(add_kdeapps_dep okular 'pdf?')
72 + virtual/latex-base
73 + virtual/tex-base
74 + pdf? (
75 + || (
76 + app-text/dvipdfmx
77 + >=app-text/texlive-core-2014
78 + )
79 + app-text/ghostscript-gpl
80 + )
81 + png? (
82 + app-text/dvipng
83 + || ( media-gfx/imagemagick[png] media-gfx/graphicsmagick[imagemagick,png] )
84 + )
85 +"
86 +
87 +DOCS=( kile-remote-control.txt )
88 +
89 +src_prepare() {
90 + kde5_src_prepare
91 +
92 + # I know upstream wants to help us but it doesn't work..
93 + sed -e '/INSTALL( FILES AUTHORS/s/^/#DISABLED /' \
94 + -i CMakeLists.txt || die
95 +}
96 +
97 +src_configure() {
98 + local mycmakeargs=(
99 + $(cmake-utils_use_find_package pdf Poppler)
100 + )
101 +
102 + kde5_src_configure
103 +}