Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/leechcraft-eiskaltdcpp: ChangeLog leechcraft-eiskaltdcpp-0.4.99.ebuild
Date: Thu, 02 Feb 2012 17:50:32
Message-Id: 20120202175023.31E922004B@flycatcher.gentoo.org
1 maksbotan 12/02/02 17:50:23
2
3 Modified: ChangeLog
4 Added: leechcraft-eiskaltdcpp-0.4.99.ebuild
5 Log:
6 Big leechcraft bump to 0.4.99, thanks to 0xd34df00d
7
8 (Portage version: 2.1.10.44/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 net-p2p/leechcraft-eiskaltdcpp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/leechcraft-eiskaltdcpp/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/leechcraft-eiskaltdcpp/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/leechcraft-eiskaltdcpp/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/leechcraft-eiskaltdcpp/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 31 Dec 2011 12:18:55 -0000 1.5
24 +++ ChangeLog 2 Feb 2012 17:50:23 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-p2p/leechcraft-eiskaltdcpp
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/leechcraft-eiskaltdcpp/ChangeLog,v 1.5 2011/12/31 12:18:55 maksbotan Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/leechcraft-eiskaltdcpp/ChangeLog,v 1.6 2012/02/02 17:50:23 maksbotan Exp $
31 +
32 +*leechcraft-eiskaltdcpp-0.4.99 (02 Feb 2012)
33 +
34 + 02 Feb 2012; Maxim Koltsov <maksbotan@g.o>
35 + +leechcraft-eiskaltdcpp-0.4.99.ebuild:
36 + Bump net-p2p/leechcraft-eiskaltdcpp to 0.4.99, thanks to 0xd34df00d
37
38 *leechcraft-eiskaltdcpp-0.4.97 (31 Dec 2011)
39
40
41
42
43 1.1 net-p2p/leechcraft-eiskaltdcpp/leechcraft-eiskaltdcpp-0.4.99.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/leechcraft-eiskaltdcpp/leechcraft-eiskaltdcpp-0.4.99.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/leechcraft-eiskaltdcpp/leechcraft-eiskaltdcpp-0.4.99.ebuild?rev=1.1&content-type=text/plain
47
48 Index: leechcraft-eiskaltdcpp-0.4.99.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-p2p/leechcraft-eiskaltdcpp/leechcraft-eiskaltdcpp-0.4.99.ebuild,v 1.1 2012/02/02 17:50:23 maksbotan Exp $
53
54 EAPI="4"
55
56 inherit leechcraft
57
58 DESCRIPTION="EiskaltDC++ ported to LeechCraft."
59
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="debug +emoticons examples javascript lua pcre spell sqlite upnp"
63
64 RDEPEND="~net-misc/leechcraft-core-${PV}
65 app-arch/bzip2
66 sys-libs/zlib
67 >=dev-libs/openssl-0.9.8
68 virtual/libiconv
69 sys-devel/gettext
70 lua? ( >=dev-lang/lua-5.1 )
71 upnp? ( net-libs/miniupnpc )
72 javascript? (
73 x11-libs/qt-script
74 x11-libs/qtscriptgenerator
75 )
76 spell? ( app-text/aspell )
77 sqlite? ( x11-libs/qt-sql:4[sqlite] )
78 pcre? ( >=dev-libs/libpcre-4.2 )
79 virtual/leechcraft-task-show
80 !!net-p2p/eiskaltdcpp"
81 DEPEND="~net-misc/leechcraft-core-${PV}
82 dev-util/pkgconfig"
83
84 src_configure() {
85 local mycmakeargs=(
86 "$(cmake-utils_use lua LUA_SCRIPT)"
87 "$(cmake-utils_use lua WITH_LUASCRIPTS)"
88 "$(cmake-utils_use javascript USE_JS)"
89 "$(cmake-utils_use spell USE_ASPELL)"
90 "$(cmake-utils_use sqlite USE_QT_SQLITE)"
91 "$(cmake-utils_use upnp USE_MINIUPNP)"
92 -DLOCAL_MINIUPNP="0"
93 "$(cmake-utils_use emoticons WITH_EMOTICONS)"
94 "$(cmake-utils_use examples WITH_EXAMPLES)"
95 "$(cmake-utils_use pcre PERL_REGEX)"
96 )
97
98 cmake-utils_src_configure
99 }