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/msn-pecan: msn-pecan-0.1.2.ebuild ChangeLog msn-pecan-0.1.1.ebuild msn-pecan-0.0.19.ebuild msn-pecan-0.1.0.ebuild
Date: Sun, 01 May 2011 19:20:38
Message-Id: 20110501192026.879B720054@flycatcher.gentoo.org
1 voyageur 11/05/01 19:20:26
2
3 Modified: ChangeLog
4 Added: msn-pecan-0.1.2.ebuild
5 Removed: msn-pecan-0.1.1.ebuild msn-pecan-0.0.19.ebuild
6 msn-pecan-0.1.0.ebuild
7 Log:
8 Version bump, fixes connection. Remove previous versions that do not work anymore
9
10 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.10 x11-plugins/msn-pecan/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/msn-pecan/ChangeLog?rev=1.10&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/msn-pecan/ChangeLog?rev=1.10&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/msn-pecan/ChangeLog?r1=1.9&r2=1.10
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/msn-pecan/ChangeLog,v
22 retrieving revision 1.9
23 retrieving revision 1.10
24 diff -u -r1.9 -r1.10
25 --- ChangeLog 28 Aug 2010 22:27:59 -0000 1.9
26 +++ ChangeLog 1 May 2011 19:20:26 -0000 1.10
27 @@ -1,6 +1,14 @@
28 # ChangeLog for x11-plugins/msn-pecan
29 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/msn-pecan/ChangeLog,v 1.9 2010/08/28 22:27:59 voyageur Exp $
31 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/msn-pecan/ChangeLog,v 1.10 2011/05/01 19:20:26 voyageur Exp $
33 +
34 +*msn-pecan-0.1.2 (01 May 2011)
35 +
36 + 01 May 2011; Bernard Cafarelli <voyageur@g.o>
37 + -msn-pecan-0.0.19.ebuild, -msn-pecan-0.1.0.ebuild, -msn-pecan-0.1.1.ebuild,
38 + +msn-pecan-0.1.2.ebuild:
39 + Version bump, fixes connection. Remove previous versions that do not work
40 + anymore
41
42 *msn-pecan-0.1.1 (28 Aug 2010)
43
44
45
46
47 1.1 x11-plugins/msn-pecan/msn-pecan-0.1.2.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/msn-pecan/msn-pecan-0.1.2.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/msn-pecan/msn-pecan-0.1.2.ebuild?rev=1.1&content-type=text/plain
51
52 Index: msn-pecan-0.1.2.ebuild
53 ===================================================================
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/msn-pecan/msn-pecan-0.1.2.ebuild,v 1.1 2011/05/01 19:20:26 voyageur Exp $
57
58 EAPI="2"
59
60 inherit eutils toolchain-funcs multilib
61
62 DESCRIPTION="Alternative MSN protocol plugin for libpurple"
63 HOMEPAGE="http://code.google.com/p/msn-pecan/"
64
65 SRC_URI="http://msn-pecan.googlecode.com/files/${P/_/-}.tar.bz2"
66 LICENSE="GPL-2"
67
68 SLOT="0"
69
70 KEYWORDS="~amd64 ~x86"
71 IUSE=""
72
73 RDEPEND="net-im/pidgin"
74 DEPEND="dev-util/pkgconfig
75 ${RDEPEND}"
76
77 S=${WORKDIR}/${P/_/-}
78
79 src_prepare() {
80 sed -e "/^LDFLAGS/{s/$/ ${LDFLAGS}/;}" \
81 -e "/^CFLAGS/{s/$/ ${CFLAGS}/;}" -i Makefile || die
82 }
83
84 src_compile() {
85 emake CC="$(tc-getCC)" || die
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "emake install failed"
90 dodoc ChangeLog README TODO || die "dodoc failed"
91 }
92
93 pkg_postinst() {
94 elog "Select the 'WLM' protocol to use this plugin"
95 einfo
96 elog "For more information (how to change personal message, add"
97 elog "missing emoticons, ...), please read:"
98 elog "http://code.google.com/p/msn-pecan/wiki/FAQ"
99 }