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-msn-pecan: ChangeLog pidgin-msn-pecan-0.0.17.ebuild
Date: Mon, 01 Dec 2008 14:46:12
Message-Id: E1L7A2N-0004Rh-4k@stork.gentoo.org
1 voyageur 08/12/01 14:46:11
2
3 Modified: ChangeLog
4 Added: pidgin-msn-pecan-0.0.17.ebuild
5 Log:
6 Version bump, adds custom emoticon sending support and independent personal status messages
7 (Portage version: 2.2_rc16/cvs/Linux 2.6.26-gentoo x86_64)
8
9 Revision Changes Path
10 1.5 x11-plugins/pidgin-msn-pecan/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-msn-pecan/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-msn-pecan/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-msn-pecan/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-msn-pecan/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 14 Sep 2008 22:46:14 -0000 1.4
23 +++ ChangeLog 1 Dec 2008 14:46:11 -0000 1.5
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-plugins/pidgin-msn-pecan
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-msn-pecan/ChangeLog,v 1.4 2008/09/14 22:46:14 voyageur Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-msn-pecan/ChangeLog,v 1.5 2008/12/01 14:46:11 voyageur Exp $
29 +
30 +*pidgin-msn-pecan-0.0.17 (01 Dec 2008)
31 +
32 + 01 Dec 2008; Bernard Cafarelli <voyageur@g.o>
33 + +pidgin-msn-pecan-0.0.17.ebuild:
34 + Version bump, adds custom emoticon sending support and independent
35 + personal status messages
36
37 *pidgin-msn-pecan-0.0.16 (14 Sep 2008)
38
39
40
41
42 1.1 x11-plugins/pidgin-msn-pecan/pidgin-msn-pecan-0.0.17.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-msn-pecan/pidgin-msn-pecan-0.0.17.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-msn-pecan/pidgin-msn-pecan-0.0.17.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pidgin-msn-pecan-0.0.17.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-msn-pecan/pidgin-msn-pecan-0.0.17.ebuild,v 1.1 2008/12/01 14:46:11 voyageur Exp $
52
53 inherit toolchain-funcs multilib
54
55 MY_P="msn-pecan-${PV}"
56
57 DESCRIPTION="Alternative MSN protocol plugin for libpurple"
58 HOMEPAGE="http://code.google.com/p/msn-pecan/"
59
60 SRC_URI="http://msn-pecan.googlecode.com/files/${MY_P}.tar.bz2"
61 LICENSE="GPL-2"
62
63 SLOT="0"
64
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 RDEPEND="net-im/pidgin"
69 DEPEND="dev-util/pkgconfig
70 ${RDEPEND}"
71
72 S="${WORKDIR}/${MY_P}"
73
74 src_unpack() {
75 unpack ${A}
76 cd "${S}"
77
78 sed -i -e "s:/lib:/$(get_libdir):" Makefile || die "unable to fix Makefile"
79 }
80
81 src_compile() {
82 emake CC="$(tc-getCC)" || die "emake failed"
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "emake install failed"
87 dodoc COPYRIGHT ChangeLog README TODO || die "dodoc failed"
88 }
89
90 pkg_postinst() {
91 elog "Select the 'WLM' protocol to use this plugin"
92 einfo
93 elog "For more information (how to change personal message, add"
94 elog "missing emoticons, ...), please read:"
95 elog "http://code.google.com/p/msn-pecan/wiki/FAQ"
96 }