Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/pidgin-xmpp-receipts: metadata.xml pidgin-xmpp-receipts-0.6.ebuild ChangeLog
Date: Wed, 29 Jan 2014 01:49:09
Message-Id: 20140129014906.3F1802004C@flycatcher.gentoo.org
1 mrueg 14/01/29 01:49:06
2
3 Added: metadata.xml pidgin-xmpp-receipts-0.6.ebuild
4 ChangeLog
5 Log:
6 Initial ebuild. Thanks to Gerion Entrup. See bug #490954.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.1 x11-plugins/pidgin-xmpp-receipts/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-xmpp-receipts/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-xmpp-receipts/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <maintainer>
22 <email>mrueg@g.o</email>
23 <name>Manuel Rüger</name>
24 </maintainer>
25 </pkgmetadata>
26
27
28
29 1.1 x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.6.ebuild
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.6.ebuild?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.6.ebuild?rev=1.1&content-type=text/plain
33
34 Index: pidgin-xmpp-receipts-0.6.ebuild
35 ===================================================================
36 # Copyright 1999-2014 Gentoo Foundation
37 # Distributed under the terms of the GNU General Public License v2
38 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.6.ebuild,v 1.1 2014/01/29 01:49:06 mrueg Exp $
39
40 EAPI=5
41
42 inherit toolchain-funcs
43
44 DESCRIPTION="Implementation of xmpp message delivery receipts (XEP-0184) for Pidgin"
45 HOMEPAGE="https://www.assembla.com/spaces/pidgin-xmpp-receipts/documents"
46 SRC_URI="https://www.assembla.com/spaces/pidgin-xmpp-receipts/documents/ckA6jCV5Kr4OkjacwqjQXA/download/ckA6jCV5Kr4OkjacwqjQXA -> ${P}.tar.gz"
47
48 LICENSE="GPL-3"
49 SLOT="0"
50 KEYWORDS="~amd64"
51 IUSE=""
52
53 RDEPEND="net-im/pidgin[gtk]"
54 DEPEND="${RDEPEND}
55 virtual/pkgconfig"
56
57 src_compile() {
58 GTK_PIDGIN_INCLUDES=$(pkg-config --cflags gtk+-2.0 pidgin)
59 $(tc-getCC) ${LDFLAGS} -shared ${CFLAGS} -fpic ${GTK_PIDGIN_INCLUDES} -o ${PN/pidgin-/}.so ${PN/pidgin-/}.c || die
60 }
61
62 src_install() {
63 PLUGIN_DIR_PIDGIN=$(pkg-config --variable=plugindir pidgin)
64 dodir "${PLUGIN_DIR_PIDGIN}"
65 insinto "${PLUGIN_DIR_PIDGIN}"
66 doins ${PN/pidgin-/}.so
67 }
68
69
70
71 1.1 x11-plugins/pidgin-xmpp-receipts/ChangeLog
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-xmpp-receipts/ChangeLog?rev=1.1&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-xmpp-receipts/ChangeLog?rev=1.1&content-type=text/plain
75
76 Index: ChangeLog
77 ===================================================================
78 # ChangeLog for x11-plugins/pidgin-xmpp-receipts
79 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
80 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-xmpp-receipts/ChangeLog,v 1.1 2014/01/29 01:49:06 mrueg Exp $
81
82 *pidgin-xmpp-receipts-0.6 (29 Jan 2014)
83
84 29 Jan 2014; Manuel Rüger <mrueg@g.o> +metadata.xml,
85 +pidgin-xmpp-receipts-0.6.ebuild:
86 Initial ebuild. Thanks to Gerion Entrup. See bug #490954.