blob: 4c8cbb39a5ebab6c04742081b42cfdbd1e8a3ae3 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-encryption/pidgin-encryption-3.0.ebuild,v 1.8 2009/02/05 05:11:25 darkside Exp $
inherit flag-o-matic eutils
DESCRIPTION="Pidgin IM Encryption PlugIn"
HOMEPAGE="http://pidgin-encrypt.sourceforge.net/"
SRC_URI="mirror://sourceforge/gaim-encryption/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 hppa ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE="nls"
RDEPEND="net-im/pidgin
>=x11-libs/gtk+-2
>=dev-libs/nss-3.11"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
strip-flags
replace-flags -O? -O2
econf $(use_enable nls) || die "failed running configure"
emake -j1 || die "Make failed"
}
src_install() {
make install DESTDIR="${D}" || die "Install failed"
dodoc CHANGELOG INSTALL NOTES README TODO VERSION WISHLIST
}
|