Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libicq2000: libicq2000-0.3.2.ebuild
Date: Thu, 18 Jun 2009 19:32:16
Message-Id: E1MHNLK-0002Qw-F7@stork.gentoo.org
1 ssuominen 09/06/18 19:32:14
2
3 Modified: libicq2000-0.3.2.ebuild
4 Log:
5 mostly to remove odd whitespace in KEYWORDS to be friendly with our search tools
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.8 net-libs/libicq2000/libicq2000-0.3.2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libicq2000/libicq2000-0.3.2.ebuild?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libicq2000/libicq2000-0.3.2.ebuild?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libicq2000/libicq2000-0.3.2.ebuild?r1=1.7&r2=1.8
14
15 Index: libicq2000-0.3.2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-libs/libicq2000/libicq2000-0.3.2.ebuild,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- libicq2000-0.3.2.ebuild 27 Jul 2008 10:11:05 -0000 1.7
22 +++ libicq2000-0.3.2.ebuild 18 Jun 2009 19:32:14 -0000 1.8
23 @@ -1,29 +1,30 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libicq2000/libicq2000-0.3.2.ebuild,v 1.7 2008/07/27 10:11:05 loki_val Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libicq2000/libicq2000-0.3.2.ebuild,v 1.8 2009/06/18 19:32:14 ssuominen Exp $
28
29 -inherit base autotools
30 +EAPI=2
31 +inherit base
32
33 DESCRIPTION="ICQ 200x compatible ICQ libraries."
34 SRC_URI="mirror://sourceforge/libicq2000/${P}.tar.gz"
35 HOMEPAGE="http://ickle.sf.net"
36
37 -SLOT="0"
38 LICENSE="LGPL-2.1"
39 -KEYWORDS="x86 sparc "
40 +SLOT="0"
41 +KEYWORDS="sparc x86"
42 IUSE=""
43
44 -DEPEND="=dev-libs/libsigc++-1.0*"
45 +RDEPEND="dev-libs/libsigc++:1.0"
46 +DEPEND="${RDEPEND}"
47
48 PATCHES=( "${FILESDIR}/${P}-gcc43.patch" )
49
50 -src_compile() {
51 - econf --enable-debug || die "econf failed"
52 - emake || die "emake failed"
53 -
54 +src_configure() {
55 + econf \
56 + --enable-debug
57 }
58
59 src_install () {
60 - make DESTDIR=${D} install || die "make install failed"
61 - dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
62 + emake DESTDIR="${D}" install || die "emake install failed"
63 + dodoc AUTHORS ChangeLog NEWS README THANKS TODO
64 }