Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/kvirc: kvirc-9999.ebuild
Date: Fri, 31 Dec 2010 16:29:34
Message-Id: 20101231162925.093E520054@flycatcher.gentoo.org
1 arfrever 10/12/31 16:29:24
2
3 Modified: kvirc-9999.ebuild
4 Log:
5 Call python_pkg_setup(). Update call to sed.
6
7 (Portage version: 2.2.0_alpha11_p1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.27 net-irc/kvirc/kvirc-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/kvirc/kvirc-9999.ebuild?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/kvirc/kvirc-9999.ebuild?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/kvirc/kvirc-9999.ebuild?r1=1.26&r2=1.27
15
16 Index: kvirc-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/kvirc/kvirc-9999.ebuild,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- kvirc-9999.ebuild 25 Jun 2010 13:57:14 -0000 1.26
23 +++ kvirc-9999.ebuild 31 Dec 2010 16:29:24 -0000 1.27
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/kvirc-9999.ebuild,v 1.26 2010/06/25 13:57:14 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/kvirc-9999.ebuild,v 1.27 2010/12/31 16:29:24 arfrever Exp $
29
30 EAPI="3"
31 PYTHON_DEPEND="python? 2"
32 @@ -18,8 +18,7 @@
33 KEYWORDS=""
34 IUSE="audiofile dcc_video +dcc_voice debug doc gsm +ipc ipv6 kde +nls oss +perl +phonon profile +python +qt-dbus qt-webkit +ssl theora +transparency"
35
36 -RDEPEND="
37 - >=dev-libs/crypto++-5.6.0-r1
38 +RDEPEND=">=dev-libs/crypto++-5.6.0-r1
39 sys-libs/zlib
40 x11-libs/libX11
41 >=x11-libs/qt-core-4.5
42 @@ -58,14 +57,15 @@
43
44 if use python; then
45 python_set_active_version 2
46 + python_pkg_setup
47 fi
48 }
49
50 src_prepare() {
51 subversion_wc_info
52 VERSIO_PRAESENS="${ESVN_WC_REVISION}"
53 - elog "Setting revision number to ${VERSIO_PRAESENS}"
54 - sed -e "/#define KVI_DEFAULT_FRAME_CAPTION/s/KVI_VERSION/& \" r${VERSIO_PRAESENS}\"/" -i src/kvirc/ui/kvi_frame.cpp || die "Failed to set revision number"
55 + einfo "Setting of revision number to ${VERSIO_PRAESENS}"
56 + sed -e "/#define KVI_DEFAULT_FRAME_CAPTION/s/KVI_VERSION/& \" r${VERSIO_PRAESENS}\"/" -i src/kvirc/ui/KviMainWindow.cpp || die "Setting of revision number failed"
57 }
58
59 src_configure() {