Gentoo Archives: gentoo-commits

From: "Johannes Huber (johu)" <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/kdocker: kdocker-4.8-r1.ebuild ChangeLog
Date: Sun, 27 Oct 2013 15:14:23
Message-Id: 20131027151415.0C1D620047@flycatcher.gentoo.org
1 johu 13/10/27 15:14:14
2
3 Modified: ChangeLog
4 Added: kdocker-4.8-r1.ebuild
5 Log:
6 Revision bump uses system qtsingleapplication instead of bundled lib wrt bug #489146.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF3CFD2BD)
9
10 Revision Changes Path
11 1.7 x11-misc/kdocker/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/kdocker/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/kdocker/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/kdocker/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/kdocker/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 11 Jun 2013 15:53:24 -0000 1.6
24 +++ ChangeLog 27 Oct 2013 15:14:14 -0000 1.7
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-misc/kdocker
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/kdocker/ChangeLog,v 1.6 2013/06/11 15:53:24 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/kdocker/ChangeLog,v 1.7 2013/10/27 15:14:14 johu Exp $
30 +
31 +*kdocker-4.8-r1 (27 Oct 2013)
32 +
33 + 27 Oct 2013; Johannes Huber <johu@g.o>
34 + +files/kdocker-4.8-unbundle-qtsingleapplication.patch, +kdocker-4.8-r1.ebuild:
35 + Revision bump uses system qtsingleapplication instead of bundled lib wrt bug
36 + #489146.
37
38 11 Jun 2013; Agostino Sarubbo <ago@g.o> kdocker-4.8.ebuild:
39 Stable for x86, wrt bug #472986
40
41
42
43 1.1 x11-misc/kdocker/kdocker-4.8-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/kdocker/kdocker-4.8-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/kdocker/kdocker-4.8-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: kdocker-4.8-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/kdocker/kdocker-4.8-r1.ebuild,v 1.1 2013/10/27 15:14:14 johu Exp $
53
54 EAPI=5
55
56 LANGS="it"
57 inherit qt4-r2
58
59 DESCRIPTION="Helper to dock any application into the system tray"
60 HOMEPAGE="https://launchpad.net/kdocker/"
61 SRC_URI="http://launchpad.net/${PN}/trunk/${PV:0:3}/+download/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 DEPEND="
69 x11-libs/libX11
70 x11-libs/libXmu
71 x11-libs/libXpm
72 dev-qt/qtcore:4
73 dev-qt/qtgui:4
74 dev-qt/qtsingleapplication
75 "
76 RDEPEND="${DEPEND}"
77
78 DOCS=( AUTHORS BUGS ChangeLog CREDITS README TODO )
79
80 PATCHES=( "${FILESDIR}/${P}-unbundle-qtsingleapplication.patch" )
81
82 src_prepare() {
83 qt4-r2_src_prepare
84
85 if ! use linguas_it ; then
86 sed -e '/^INSTALLS +=/s/translations//' -i kdocker.pro || die "sed failed"
87 fi
88 }
89
90 src_configure() {
91 eqmake4 PREFIX="${EPREFIX}/usr" SYSTEMQTSA=1
92 }