blob: 561a3df71d68c3f26abc906ade17fd2cf9e90a39 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit flag-o-matic eutils
DESCRIPTION="Pidgin IM Encryption PlugIn"
HOMEPAGE="http://pidgin-encrypt.sourceforge.net/"
SRC_URI="mirror://sourceforge/pidgin-encrypt/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc64 sparc x86"
IUSE="nls"
RDEPEND="net-im/pidgin[gtk]
x11-libs/gtk+:2
>=dev-libs/nss-3.11"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}/${P}-glib2.32.patch"
}
src_configure() {
strip-flags
replace-flags -O? -O2
econf $(use_enable nls)
}
src_install() {
emake install DESTDIR="${D}"
dodoc CHANGELOG INSTALL NOTES README TODO VERSION WISHLIST
}
|