blob: 58a46126f91b9a05f6023be2bafb402f3c9053ee (
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
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-opensteamworks/pidgin-opensteamworks-1.0_p67.ebuild,v 1.1 2013/08/10 15:43:44 mrueg Exp $
EAPI=5
inherit toolchain-funcs
DESCRIPTION="Steam protocol plugin for pidgin"
HOMEPAGE="http://code.google.com/p/pidgin-opensteamworks/"
SRC_URI="http://dev.gentoo.org/~mrueg/distfiles/${P}.tar.xz
http://pidgin-opensteamworks.googlecode.com/files/icons.zip
-> ${PN}-icons.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="dev-libs/glib:2
dev-libs/json-glib
dev-libs/nss
gnome-base/libgnome-keyring
net-im/pidgin"
DEPEND="${RDEPEND}
app-arch/unzip
app-arch/xz-utils
virtual/pkgconfig"
pkg_setup() {
tc-export CC
}
src_prepare() {
# see http://code.google.com/p/pidgin-opensteamworks/issues/detail?id=31
cp "${FILESDIR}"/${P}-Makefile "${S}"/Makefile || die
}
src_install() {
default
insinto /usr/share/pixmaps/pidgin/protocols
doins -r "${WORKDIR}"/{16,48}
}
|