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-irc/kvirc: ChangeLog kvirc-3.4.2.ebuild kvirc-3.2.6_pre20080204.ebuild kvirc-3.2.6_pre20070714.ebuild
Date: Sun, 02 Nov 2008 16:01:03
Message-Id: E1KwfNs-0006Zi-8A@stork.gentoo.org
1 scarabeus 08/11/02 16:01:00
2
3 Modified: ChangeLog
4 Added: kvirc-3.4.2.ebuild
5 Removed: kvirc-3.2.6_pre20080204.ebuild
6 kvirc-3.2.6_pre20070714.ebuild
7 Log:
8 Version bump. Remove old. Fixes bug 242168.
9 (Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo i686)
10
11 Revision Changes Path
12 1.74 net-irc/kvirc/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/ChangeLog?rev=1.74&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/ChangeLog?rev=1.74&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/ChangeLog?r1=1.73&r2=1.74
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v
21 retrieving revision 1.73
22 retrieving revision 1.74
23 diff -u -r1.73 -r1.74
24 --- ChangeLog 2 Nov 2008 14:22:25 -0000 1.73
25 +++ ChangeLog 2 Nov 2008 16:01:00 -0000 1.74
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-irc/kvirc
28 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v 1.73 2008/11/02 14:22:25 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/ChangeLog,v 1.74 2008/11/02 16:01:00 scarabeus Exp $
31 +
32 +*kvirc-3.4.2 (02 Nov 2008)
33 +
34 + 02 Nov 2008; Tomas Chvatal <scarabeus@g.o>
35 + -kvirc-3.2.6_pre20070714.ebuild, -kvirc-3.2.6_pre20080204.ebuild,
36 + +kvirc-3.4.2.ebuild:
37 + Version bump. Remove old.
38
39 02 Nov 2008; Tomas Chvatal <scarabeus@g.o> kvirc-9999.ebuild:
40 Update live ebuild so it keeps track with upstram changes.
41
42
43
44 1.1 net-irc/kvirc/kvirc-3.4.2.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/kvirc-3.4.2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/kvirc/kvirc-3.4.2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: kvirc-3.4.2.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-irc/kvirc/kvirc-3.4.2.ebuild,v 1.1 2008/11/02 16:01:00 scarabeus Exp $
54
55 EAPI="1"
56
57 inherit eutils kde-functions
58
59 DESCRIPTION="An advanced IRC Client"
60 HOMEPAGE="http://www.kvirc.net/"
61 SRC_URI="ftp://ftp.kvirc.de/pub/kvirc/${PV}/source/${P}.tar.bz2"
62
63 LICENSE="kvirc"
64 SLOT="3"
65 KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
66 IUSE="debug esd ipv6 kde oss qt4 ssl"
67
68 RDEPEND="esd? ( media-sound/esound )
69 ssl? ( dev-libs/openssl )
70 oss? ( media-libs/audiofile )
71 kde? ( kde-base/kdelibs:3.5 )
72 qt4? ( || ( x11-libs/qt-gui:4 x11-libs/qt:4 ) )
73 !qt4? ( x11-libs/qt:3 )"
74
75 DEPEND="${RDEPEND}
76 sys-devel/gettext"
77
78 src_unpack() {
79 unpack ${A}
80 cd "${S}"
81 epatch "${FILESDIR}"/${PN}-3.4.0-kdedir-fix.patch
82 epatch "${FILESDIR}"/${PN}-gendoc.patch
83 }
84
85 src_compile() {
86 if ! use qt4 ; then
87 set-qtdir 3
88 set-kdedir 3
89 fi
90
91 # use aa even when kde support is disabled; remove the splash screen
92 # to speed up the startup.
93 local myconf="--with-aa-fonts --without-splash-screen
94 --with-big-channels --with-pizza"
95
96 # For myconf, we can't do it the easy way (use_with) because the configure
97 # script will assume we're telling it not to include support.
98 myconf="${myconf} `use_with debug debug-symbols`"
99 if use qt4 ; then
100 myconf="${myconf} --enable-qt4 --with-qt4-moc=/usr/bin/moc"
101 myconf="${myconf} --without-kde-support --without-arts-support"
102 else
103 use kde || myconf="${myconf} --without-kde-support --without-arts-support"
104 fi
105 use ipv6 || myconf="${myconf} --without-ipv6-support"
106 use esd || myconf="${myconf} --without-esd-support"
107 use ssl || myconf="${myconf} --without-ssl-support"
108
109 [[ "${ARCH}" == "x86" ]] && myconf="${myconf} --with-ix86-asm"
110
111 econf ${myconf} || die "econf failed"
112 emake -j1 || die "econf failed"
113 }
114
115 src_install() {
116 emake DESTDIR="${D}" install || die "emake install failed"
117 emake DESTDIR="${D}" docs || die "emake docs failed"
118 dodoc ChangeLog INSTALL README TODO
119 }