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.69.ebuild ChangeLog pidgin-facebookchat-1.67.ebuild pidgin-facebookchat-1.65.ebuild
Date: Sat, 27 Nov 2010 20:30:25
Message-Id: 20101127203016.56B8520051@flycatcher.gentoo.org
1 voyageur 10/11/27 20:30:16
2
3 Modified: ChangeLog
4 Added: pidgin-facebookchat-1.69.ebuild
5 Removed: pidgin-facebookchat-1.67.ebuild
6 pidgin-facebookchat-1.65.ebuild
7 Log:
8 Version bump, fix the recent problems of the buddy list not showing. Drop old versions
9
10 (Portage version: 2.2.0_alpha6/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.33 x11-plugins/pidgin-facebookchat/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog?rev=1.33&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog?rev=1.33&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog?r1=1.32&r2=1.33
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog,v
22 retrieving revision 1.32
23 retrieving revision 1.33
24 diff -u -r1.32 -r1.33
25 --- ChangeLog 10 Oct 2010 23:01:30 -0000 1.32
26 +++ ChangeLog 27 Nov 2010 20:30:16 -0000 1.33
27 @@ -1,6 +1,14 @@
28 # ChangeLog for x11-plugins/pidgin-facebookchat
29 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog,v 1.32 2010/10/10 23:01:30 voyageur Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog,v 1.33 2010/11/27 20:30:16 voyageur Exp $
32 +
33 +*pidgin-facebookchat-1.69 (27 Nov 2010)
34 +
35 + 27 Nov 2010; Bernard Cafarelli <voyageur@g.o>
36 + -pidgin-facebookchat-1.65.ebuild, -pidgin-facebookchat-1.67.ebuild,
37 + +pidgin-facebookchat-1.69.ebuild:
38 + Version bump, fix the recent problems of the buddy list not showing. Drop old
39 + versions
40
41 *pidgin-facebookchat-1.68 (10 Oct 2010)
42
43
44
45
46 1.1 x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.69.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.69.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.69.ebuild?rev=1.1&content-type=text/plain
50
51 Index: pidgin-facebookchat-1.69.ebuild
52 ===================================================================
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.69.ebuild,v 1.1 2010/11/27 20:30:16 voyageur Exp $
56
57 inherit toolchain-funcs multilib
58
59 DESCRIPTION="Facebook chat plugin for libpurple"
60 HOMEPAGE="http://code.google.com/p/pidgin-facebookchat/"
61
62 SRC_URI="http://pidgin-facebookchat.googlecode.com/files/${PN}-source-${PV}.tar.bz2"
63 LICENSE="GPL-3"
64
65 SLOT="0"
66
67 KEYWORDS="~amd64 ~ppc ~x86"
68 IUSE=""
69
70 RDEPEND=">=dev-libs/json-glib-0.7.6
71 >=net-im/pidgin-2.3.0"
72 DEPEND="dev-util/pkgconfig
73 ${RDEPEND}"
74
75 S=${WORKDIR}/${PN}
76
77 pkg_setup() {
78 ewarn "This plugin is not mandatory anymore for Facebook chat"
79 ewarn "as it is now available via XMPP, see:"
80 ewarn "http://blog.facebook.com/blog.php?post=297991732130"
81 ewarn "You can still use this plugin for extra features if you want"
82 ewarn "Future versions will use XMPP and provide these features at the same time"
83 }
84
85 src_compile() {
86 # Grabbed from makefile
87 FACEBOOK_SOURCES="libfacebook.c fb_blist.c fb_connection.c fb_conversation.c fb_info.c fb_managefriends.c fb_messages.c fb_notifications.c fb_search.c fb_util.c fb_friendlist.c fb_json.c fb_chat.c"
88
89 $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} `pkg-config --cflags purple json-glib-1.0` \
90 -DPURPLE_PLUGINS -DENABLE_NLS -DHAVE_ZLIB -shared -fPIC -DPIC \
91 ${FACEBOOK_SOURCES} `pkg-config --libs json-glib-1.0` \
92 -o libfacebook.so || die "compilation failed"
93 }
94
95 src_install() {
96 exeinto /usr/$(get_libdir)/purple-2
97 doexe libfacebook.so
98 for size in 16 22 48; do
99 insinto /usr/share/pixmaps/pidgin/protocols/${size}
100 newins facebook${size}.png facebook.png
101 done
102 }