Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-misc/tellico: tellico-2.3.9.ebuild ChangeLog
Date: Wed, 25 Jun 2014 17:25:09
Message-Id: 20140625172454.7C8E92004E@flycatcher.gentoo.org
1 kensington 14/06/25 17:24:54
2
3 Modified: ChangeLog
4 Added: tellico-2.3.9.ebuild
5 Log:
6 Version bump wrt bug #514678.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
9
10 Revision Changes Path
11 1.127 kde-misc/tellico/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/ChangeLog?rev=1.127&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/ChangeLog?rev=1.127&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/ChangeLog?r1=1.126&r2=1.127
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-misc/tellico/ChangeLog,v
20 retrieving revision 1.126
21 retrieving revision 1.127
22 diff -u -r1.126 -r1.127
23 --- ChangeLog 28 Aug 2013 11:49:11 -0000 1.126
24 +++ ChangeLog 25 Jun 2014 17:24:54 -0000 1.127
25 @@ -1,6 +1,11 @@
26 # ChangeLog for kde-misc/tellico
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/tellico/ChangeLog,v 1.126 2013/08/28 11:49:11 kensington Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/tellico/ChangeLog,v 1.127 2014/06/25 17:24:54 kensington Exp $
31 +
32 +*tellico-2.3.9 (25 Jun 2014)
33 +
34 + 25 Jun 2014; Michael Palimaka <kensington@g.o> +tellico-2.3.9.ebuild:
35 + Version bump wrt bug #514678.
36
37 28 Aug 2013; Michael Palimaka <kensington@g.o> -tellico-2.3.7.ebuild:
38 Remove old.
39
40
41
42 1.1 kde-misc/tellico/tellico-2.3.9.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/tellico-2.3.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/tellico-2.3.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tellico-2.3.9.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/kde-misc/tellico/tellico-2.3.9.ebuild,v 1.1 2014/06/25 17:24:54 kensington Exp $
52
53 EAPI=5
54
55 KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB eo es et eu fi fr ga gl hu
56 ia it ja kk lt mr ms nb nds nl nn pl pt pt_BR ro ru sk sl sv tr ug uk zh_CN
57 zh_TW"
58 KDE_HANDBOOK="optional"
59 inherit kde4-base
60
61 DESCRIPTION="A collection manager for the KDE environment"
62 HOMEPAGE="http://tellico-project.org/"
63 SRC_URI="http://tellico-project.org/files/${P}.tar.bz2"
64
65 LICENSE="GPL-2"
66 SLOT="4"
67 KEYWORDS="~amd64 ~ppc ~x86"
68 IUSE="addressbook cddb debug pdf scanner taglib v4l xmp yaz"
69
70 RDEPEND="
71 dev-libs/libxml2
72 dev-libs/libxslt
73 dev-libs/qjson
74 $(add_kdebase_dep kdelibs 'semantic-desktop(+)')
75 media-libs/qimageblitz
76 dev-qt/qtdbus:4
77 addressbook? ( $(add_kdebase_dep kdepimlibs) )
78 cddb? ( $(add_kdebase_dep libkcddb) )
79 pdf? ( app-text/poppler[qt4] )
80 scanner? ( $(add_kdebase_dep libksane) )
81 taglib? ( >=media-libs/taglib-1.5 )
82 v4l? ( >=media-libs/libv4l-0.8.3 )
83 xmp? ( >=media-libs/exempi-2 )
84 yaz? ( >=dev-libs/yaz-2 )
85 "
86 DEPEND="${RDEPEND}
87 sys-devel/gettext
88 "
89
90 # tests need network access and well-defined server responses
91 RESTRICT="test"
92
93 DOCS=( AUTHORS ChangeLog README )
94
95 src_prepare() {
96 # KDE_LINGUAS is also used to install appropriate handbooks
97 # since there is no en_US 'translation', it cannot be added
98 # hence making this impossible to install
99 mv doc/en_US doc/en || die "doc move failed"
100 sed -i -e 's/en_US/en/' doc/CMakeLists.txt || die "sed failed"
101
102 kde4-base_src_prepare
103 }
104
105 src_configure() {
106 local mycmakeargs=(
107 $(cmake-utils_use_enable v4l WEBCAM)
108 $(cmake-utils_use_with xmp Exempi)
109 $(cmake-utils_use_with scanner KSane)
110 $(cmake-utils_use_with cddb KdeMultimedia)
111 $(cmake-utils_use_with addressbook KdepimLibs)
112 $(cmake-utils_use_with pdf PopplerQt4)
113 $(cmake-utils_use_with taglib)
114 $(cmake-utils_use_with yaz)
115 )
116
117 kde4-base_src_configure
118 }