blob: b43ef6fc14b4f1ec6535d6384bcdcf2f9ca16023 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils autotools git-2
DESCRIPTION="Tox plugin for Pidgin/libpurple"
HOMEPAGE="http://tox.dhs.org/"
SRC_URI=""
EGIT_REPO_URI="https://github.com/jin-eld/tox-prpl.git"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="
dev-libs/glib:2
net-im/pidgin
net-libs/tox"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch_user
eautoreconf
}
src_configure() {
econf \
--disable-static
}
src_install() {
default
prune_libtool_files --all
}
|