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: ChangeLog pidgin-facebookchat-1.37.ebuild
Date: Sun, 05 Oct 2008 20:48:38
Message-Id: E1KmaWo-0005mX-PY@stork.gentoo.org
1 voyageur 08/10/05 20:48:34
2
3 Modified: ChangeLog
4 Added: pidgin-facebookchat-1.37.ebuild
5 Log:
6 Version bump, fixes potential problem on sending messages
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo x86_64)
8
9 Revision Changes Path
10 1.3 x11-plugins/pidgin-facebookchat/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 3 Oct 2008 11:50:35 -0000 1.2
23 +++ ChangeLog 5 Oct 2008 20:48:34 -0000 1.3
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-plugins/pidgin-facebookchat
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog,v 1.2 2008/10/03 11:50:35 voyageur Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-facebookchat/ChangeLog,v 1.3 2008/10/05 20:48:34 voyageur Exp $
29 +
30 +*pidgin-facebookchat-1.37 (05 Oct 2008)
31 +
32 + 05 Oct 2008; Bernard Cafarelli <voyageur@g.o>
33 + +pidgin-facebookchat-1.37.ebuild:
34 + Version bump, fixes potential problem on sending messages
35
36 *pidgin-facebookchat-1.36 (03 Oct 2008)
37
38
39
40
41 1.1 x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.37.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.37.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.37.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pidgin-facebookchat-1.37.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/x11-plugins/pidgin-facebookchat/pidgin-facebookchat-1.37.ebuild,v 1.1 2008/10/05 20:48:34 voyageur Exp $
51
52 inherit toolchain-funcs multilib
53
54 DESCRIPTION="Facebook chat plugin for libpurple"
55 HOMEPAGE="http://code.google.com/p/pidgin-facebookchat/"
56
57 SRC_URI="http://pidgin-facebookchat.googlecode.com/files/${PN}-source-${PV}.tar.bz2"
58 LICENSE="GPL-3"
59
60 SLOT="0"
61
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 RDEPEND="net-im/pidgin"
66 DEPEND="dev-util/pkgconfig
67 ${RDEPEND}"
68
69 S=${WORKDIR}
70
71 src_compile() {
72 $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} `pkg-config --cflags purple` \
73 -DPURPLE_PLUGINS -DENABLE_NLS -shared -fPIC -DPIC \
74 libfacebook.c -o libfacebook.so || die "compilation failed"
75 }
76
77 src_install() {
78 exeinto /usr/$(get_libdir)/purple-2
79 doexe libfacebook.so
80 for size in 16 22 48; do
81 insinto /usr/share/pixmaps/pidgin/protocols/${size}
82 newins facebook${size}.png facebook.png
83 done
84 }