Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/pidgin-facebookchat: pidgin-facebookchat-1.61.ebuild ChangeLog
Date: Tue, 08 Sep 2009 08:50:02
Message-Id: E1MkwOm-0006Se-Du@stork.gentoo.org
1 voyageur 09/09/08 08:50:00
2
3 Modified: ChangeLog
4 Added: pidgin-facebookchat-1.61.ebuild
5 Log:
6 Bump, adds option to disable friends lists, fix problems with messages arriving from weird numbers, and other bugfixes
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.24 x11-plugins/pidgin-facebookchat/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 17 Jul 2009 10:08:04 -0000 1.23
23 +++ ChangeLog 8 Sep 2009 08:50:00 -0000 1.24
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-plugins/pidgin-facebookchat
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog,v 1.23 2009/07/17 10:08:04 voyageur Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog,v 1.24 2009/09/08 08:50:00 voyageur Exp $
29 +
30 +*pidgin-facebookchat-1.61 (08 Sep 2009)
31 +
32 + 08 Sep 2009; Bernard Cafarelli <voyageur@g.o>
33 + +pidgin-facebookchat-1.61.ebuild:
34 + Bump, adds option to disable friends lists, fix problems with messages
35 + arriving from weird numbers, and other bugfixes
36
37 *pidgin-facebookchat-1.60 (17 Jul 2009)
38
39
40
41
42 1.1 x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.61.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.61.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.61.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pidgin-facebookchat-1.61.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.61.ebuild,v 1.1 2009/09/08 08:50:00 voyageur Exp $
52
53 inherit toolchain-funcs multilib
54
55 DESCRIPTION="Facebook chat plugin for libpurple"
56 HOMEPAGE="http://code.google.com/p/pidgin-facebookchat/"
57
58 SRC_URI="http://pidgin-facebookchat.googlecode.com/files/${PN}-source-${PV}.tar.bz2"
59 LICENSE="GPL-3"
60
61 SLOT="0"
62
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND=">=dev-libs/json-glib-0.7.6
67 >=net-im/pidgin-2.3.0"
68 DEPEND="dev-util/pkgconfig
69 ${RDEPEND}"
70
71 S=${WORKDIR}/${PN}
72
73 src_compile() {
74 # Grabbed from makefile
75 FACEBOOK_SOURCES="libfacebook.c fb_blist.c fb_connection.c fb_conversation.c fb_friendlist.c fb_info.c fb_json.c fb_managefriends.c fb_messages.c fb_notifications.c fb_search.c fb_util.c"
76 $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} `pkg-config --cflags purple json-glib-1.0` \
77 -DPURPLE_PLUGINS -DENABLE_NLS -DHAVE_ZLIB -shared -fPIC -DPIC \
78 ${FACEBOOK_SOURCES} `pkg-config --libs json-glib-1.0` \
79 -o libfacebook.so || die "compilation failed"
80 }
81
82 src_install() {
83 exeinto /usr/$(get_libdir)/purple-2
84 doexe libfacebook.so
85 for size in 16 22 48; do
86 insinto /usr/share/pixmaps/pidgin/protocols/${size}
87 newins facebook${size}.png facebook.png
88 done
89 }