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: ChangeLog tellico-2.3.7.ebuild
Date: Mon, 28 Jan 2013 16:44:31
Message-Id: 20130128164427.BB0A52171D@flycatcher.gentoo.org
1 kensington 13/01/28 16:44:27
2
3 Modified: ChangeLog
4 Added: tellico-2.3.7.ebuild
5 Log:
6 Version bump wrt bug #454220.
7
8 (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
9
10 Revision Changes Path
11 1.116 kde-misc/tellico/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/ChangeLog?rev=1.116&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/ChangeLog?rev=1.116&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/ChangeLog?r1=1.115&r2=1.116
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-misc/tellico/ChangeLog,v
20 retrieving revision 1.115
21 retrieving revision 1.116
22 diff -u -r1.115 -r1.116
23 --- ChangeLog 14 Nov 2012 21:49:40 -0000 1.115
24 +++ ChangeLog 28 Jan 2013 16:44:27 -0000 1.116
25 @@ -1,6 +1,11 @@
26 # ChangeLog for kde-misc/tellico
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/tellico/ChangeLog,v 1.115 2012/11/14 21:49:40 johu Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/tellico/ChangeLog,v 1.116 2013/01/28 16:44:27 kensington Exp $
31 +
32 +*tellico-2.3.7 (28 Jan 2013)
33 +
34 + 28 Jan 2013; Michael Palimaka <kensington@g.o> +tellico-2.3.7.ebuild:
35 + Version bump wrt bug #454220.
36
37 14 Nov 2012; Johannes Huber <johu@g.o> -tellico-2.3.5.ebuild:
38 Remove old.
39
40
41
42 1.1 kde-misc/tellico/tellico-2.3.7.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/tellico-2.3.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/tellico/tellico-2.3.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tellico-2.3.7.ebuild
48 ===================================================================
49 # Copyright 1999-2013 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.7.ebuild,v 1.1 2013/01/28 16:44:27 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 ms nb nds nl nn pl pt pt_BR ro ru sk sl sv tr ug uk zh_CN zh_TW"
57 KDE_HANDBOOK="optional"
58 inherit kde4-base
59
60 DESCRIPTION="A collection manager for the KDE environment"
61 HOMEPAGE="http://tellico-project.org/"
62 SRC_URI="http://tellico-project.org/files/${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="4"
66 KEYWORDS="~amd64 ~ppc ~x86"
67 IUSE="addressbook cddb debug pdf scanner semantic-desktop taglib v4l xmp yaz"
68
69 DEPEND="
70 dev-libs/libxml2
71 dev-libs/libxslt
72 dev-libs/qjson
73 $(add_kdebase_dep kdelibs 'semantic-desktop?')
74 media-libs/qimageblitz
75 x11-libs/qt-dbus:4
76 addressbook? ( $(add_kdebase_dep kdepimlibs) )
77 cddb? ( $(add_kdebase_dep libkcddb) )
78 pdf? ( >=app-text/poppler-0.12.3-r3[qt4] )
79 scanner? ( $(add_kdebase_dep libksane) )
80 semantic-desktop? ( dev-libs/soprano[raptor,redland] )
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 RDEPEND="${DEPEND}"
87
88 # tests need network access and well-defined server responses
89 RESTRICT="test"
90
91 DOCS=( AUTHORS ChangeLog README )
92
93 src_prepare() {
94 # KDE_LINGUAS is also used to install appropriate handbooks
95 # since there is no en_US 'translation', it cannot be added
96 # hence making this impossible to install
97 mv doc/en_US doc/en || die "doc move failed"
98 sed -i -e 's/en_US/en/' doc/CMakeLists.txt || die "sed failed"
99
100 kde4-base_src_prepare
101 }
102
103 src_configure() {
104 local mycmakeargs=(
105 $(cmake-utils_use_enable v4l WEBCAM)
106 $(cmake-utils_use_with xmp Exempi)
107 $(cmake-utils_use_with scanner KSane)
108 $(cmake-utils_use_with cddb Kcddb)
109 $(cmake-utils_use_with addressbook KdepimLibs)
110 $(cmake-utils_use_with pdf PopplerQt4)
111 $(cmake-utils_use_with taglib)
112 $(cmake-utils_use_with yaz)
113 )
114
115 kde4-base_src_configure
116 }