Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/ktorrent: ChangeLog ktorrent-3.2_rc1.ebuild ktorrent-3.2_beta1-r1.ebuild
Date: Sat, 31 Jan 2009 14:11:01
Message-Id: E1LTGYl-00010J-Gw@stork.gentoo.org
1 scarabeus 09/01/31 14:10:59
2
3 Modified: ChangeLog
4 Added: ktorrent-3.2_rc1.ebuild
5 Removed: ktorrent-3.2_beta1-r1.ebuild
6 Log:
7 Version bump.
8 (Portage version: 2.2_rc23/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.101 net-p2p/ktorrent/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/ktorrent/ChangeLog?rev=1.101&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/ktorrent/ChangeLog?rev=1.101&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/ktorrent/ChangeLog?r1=1.100&r2=1.101
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ChangeLog,v
20 retrieving revision 1.100
21 retrieving revision 1.101
22 diff -u -r1.100 -r1.101
23 --- ChangeLog 29 Jan 2009 13:14:01 -0000 1.100
24 +++ ChangeLog 31 Jan 2009 14:10:59 -0000 1.101
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-p2p/ktorrent
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ChangeLog,v 1.100 2009/01/29 13:14:01 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ChangeLog,v 1.101 2009/01/31 14:10:59 scarabeus Exp $
30 +
31 +*ktorrent-3.2_rc1 (31 Jan 2009)
32 +
33 + 31 Jan 2009; Tomas Chvatal <scarabeus@g.o>
34 + -ktorrent-3.2_beta1-r1.ebuild, +ktorrent-3.2_rc1.ebuild:
35 + Version bump.
36
37 *ktorrent-3.1.6 (29 Jan 2009)
38
39
40
41
42 1.1 net-p2p/ktorrent/ktorrent-3.2_rc1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/ktorrent/ktorrent-3.2_rc1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/ktorrent/ktorrent-3.2_rc1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ktorrent-3.2_rc1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ktorrent-3.2_rc1.ebuild,v 1.1 2009/01/31 14:10:59 scarabeus Exp $
52
53 EAPI="2"
54
55 KDE_MINIMAL="4.22"
56 KDE_LINGUAS="ca cs da de el es et fr gl it ja lv nb nds nl nn pl pt pt_BR ru sv uk zh_CN zh_TW"
57 inherit kde4-base
58
59 MY_PV="${PV/_/}"
60 MY_P="${P/_/}"
61
62 DESCRIPTION="A BitTorrent program for KDE."
63 HOMEPAGE="http://ktorrent.org/"
64 SRC_URI="http://ktorrent.org/downloads/${MY_PV}/${MY_P}.tar.bz2"
65
66 LICENSE="GPL-2"
67 KEYWORDS="~amd64 ~x86"
68 SLOT="3"
69 IUSE="+bwscheduler +downloadorder +infowidget +ipfilter +kross +logviewer +mediaplayer +plasma +rss +scanfolder +search +stats +upnp webinterface"
70
71 DEPEND="app-crypt/qca:2
72 dev-libs/gmp
73 sys-devel/gettext
74 !kdeprefix? ( !net-p2p/ktorrent:0 )
75 plasma? ( kde-base/plasma-workspace )
76 !net-p2p/ktorrent:4.1"
77 # 4.1 blocker is due to slot change. We wont slot based on kde version
78 # but based on application version. This was stupid mistake.
79 RDEPEND="${DEPEND}
80 infowidget? ( >=dev-libs/geoip-1.4.4 )"
81
82 S="${WORKDIR}"/${MY_P}
83
84 src_configure() {
85 local mycmakeargs
86
87 mycmakeargs="${mycmakeargs}
88 -DCMAKE_INSTALL_PREFIX=${PREFIX}
89 -DENABLE_DHT_SUPPORT=ON
90 $(cmake-utils_use_enable bwscheduler BWSCHEDULER_PLUGIN)
91 $(cmake-utils_use_enable downloadorder DOWNLOADORDER_PLUGIN)
92 $(cmake-utils_use_enable infowidget INFOWIDGET_PLUGIN)
93 $(cmake-utils_use_with infowidget SYSTEM_GEOIP)
94 $(cmake-utils_use_enable ipfilter IPFILTER_PLUGIN)
95 $(cmake-utils_use_enable kross SCRIPTING_PLUGIN)
96 $(cmake-utils_use_enable logviewer LOGVIEWER_PLUGIN)
97 $(cmake-utils_use_enable mediaplayer MEDIAPLAYER_PLUGIN)
98 $(cmake-utils_use_enable rss SYNDICATION_PLUGIN)
99 $(cmake-utils_use_enable scanfolder SCANFOLDER_PLUGIN)
100 $(cmake-utils_use_enable search SEARCH_PLUGIN)
101 $(cmake-utils_use_enable stats STATS_PLUGIN)
102 $(cmake-utils_use_enable upnp UPNP_PLUGIN)
103 $(cmake-utils_use_enable webinterface WEBINTERFACE_PLUGIN)"
104 kde4-base_src_configure
105 }