blob: 9758206a54d93f8d215df9c46bbd658a585f6642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.6.ebuild,v 1.2 2014/08/25 16:20:53 mrueg Exp $
EAPI=5
inherit toolchain-funcs
DESCRIPTION="Implementation of xmpp message delivery receipts (XEP-0184) for Pidgin"
HOMEPAGE="https://www.assembla.com/spaces/pidgin-xmpp-receipts/documents"
SRC_URI="https://www.assembla.com/spaces/pidgin-xmpp-receipts/documents/ckA6jCV5Kr4OkjacwqjQXA/download/ckA6jCV5Kr4OkjacwqjQXA -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64"
IUSE=""
RDEPEND="net-im/pidgin[gtk]"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_compile() {
GTK_PIDGIN_INCLUDES=$(pkg-config --cflags gtk+-2.0 pidgin)
$(tc-getCC) ${LDFLAGS} -shared ${CFLAGS} -fpic ${GTK_PIDGIN_INCLUDES} -o ${PN/pidgin-/}.so ${PN/pidgin-/}.c || die
}
src_install() {
PLUGIN_DIR_PIDGIN=$(pkg-config --variable=plugindir pidgin)
dodir "${PLUGIN_DIR_PIDGIN}"
insinto "${PLUGIN_DIR_PIDGIN}"
doins ${PN/pidgin-/}.so
}
|