Gentoo Archives: gentoo-commits

From: "Dawid Weglinski (cla)" <cla@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/kvirc: ChangeLog kvirc-3.2.6_pre20080204.ebuild
Date: Mon, 04 Feb 2008 14:12:05
Message-Id: E1JM22w-0001Xk-8F@stork.gentoo.org
1 cla 08/02/04 14:11:42
2
3 Modified: ChangeLog
4 Added: kvirc-3.2.6_pre20080204.ebuild
5 Log:
6 Version bump wrt bug #207359
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.60 net-irc/kvirc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/ChangeLog?rev=1.60&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/ChangeLog?rev=1.60&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/ChangeLog?r1=1.59&r2=1.60
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v
19 retrieving revision 1.59
20 retrieving revision 1.60
21 diff -u -r1.59 -r1.60
22 --- ChangeLog 19 Jan 2008 13:59:12 -0000 1.59
23 +++ ChangeLog 4 Feb 2008 14:11:41 -0000 1.60
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-irc/kvirc
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v 1.59 2008/01/19 13:59:12 ingmar Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v 1.60 2008/02/04 14:11:41 cla Exp $
29 +
30 +*kvirc-3.2.6_pre20080204 (04 Feb 2008)
31 +
32 + 04 Feb 2008; Dawid Węgliński <cla@g.o>
33 + +kvirc-3.2.6_pre20080204.ebuild:
34 + Version bump. Thanks to Ivan Mironov <mironov.ivan@×××××.com> from bug #207359
35
36 19 Jan 2008; Ingmar Vanhassel <ingmar@g.o>
37 kvirc-3.2.6_pre20070714.ebuild, kvirc-9999.ebuild:
38
39
40
41 1.1 net-irc/kvirc/kvirc-3.2.6_pre20080204.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/kvirc-3.2.6_pre20080204.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/kvirc-3.2.6_pre20080204.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kvirc-3.2.6_pre20080204.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/kvirc-3.2.6_pre20080204.ebuild,v 1.1 2008/02/04 14:11:41 cla Exp $
51
52 inherit autotools eutils kde-functions
53
54 DESCRIPTION="An advanced IRC Client"
55 HOMEPAGE="http://www.kvirc.net/"
56 SRC_URI="mirror://gentoo/${P}.tar.bz2"
57
58 LICENSE="kvirc"
59 SLOT="3"
60 KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
61 IUSE="debug esd ipv6 kde oss ssl"
62
63 RDEPEND="esd? ( media-sound/esound )
64 ssl? ( dev-libs/openssl )
65 oss? ( media-libs/audiofile )
66 kde? ( =kde-base/kdelibs-3.5* )
67 =x11-libs/qt-3*"
68
69 DEPEND="${RDEPEND}
70 sys-devel/gettext"
71
72 S="${WORKDIR}/${PN}"
73
74 src_unpack() {
75 unpack ${A}
76 cd "${S}"
77 ./autogen.sh
78 epatch "${FILESDIR}"/${PN}-svn-kdedir-fix.patch
79 epatch "${FILESDIR}"/${PN}-gendoc.patch
80 }
81
82 src_compile() {
83 set-qtdir 3
84 set-kdedir 3
85
86 # use aa even when kde support is disabled; remove the splash screen
87 # to speed up the startup.
88 local myconf="--with-aa-fonts --without-splash-screen
89 --with-big-channels --with-pizza"
90
91 # For myconf, we can't do it the easy way (use_with) because the configure
92 # script will assume we're telling it not to include support.
93 myconf="${myconf} `use_with debug debug-symbols`"
94 use kde || myconf="${myconf} --without-kde-support --without-arts-support"
95 use ipv6 || myconf="${myconf} --without-ipv6-support"
96 use esd || myconf="${myconf} --without-esd-support"
97 use ssl || myconf="${myconf} --without-ssl-support"
98
99 [[ "${ARCH}" == "x86" ]] && myconf="${myconf} --with-ix86-asm"
100
101 econf ${myconf} || die "econf failed"
102 emake -j1 || die "econf failed"
103 }
104
105 src_install() {
106 emake DESTDIR="${D}" install || die "emake install failed"
107 emake DESTDIR="${D}" docs || die "emake docs failed"
108 dodoc ChangeLog INSTALL README TODO
109 }
110
111
112
113 --
114 gentoo-commits@l.g.o mailing list