blob: f970ac43146932504fbb7a81c29b8aca4cc120ba (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-encryption/gaim-encryption-3.0_beta3.ebuild,v 1.2 2006/01/27 19:01:48 gustavoz Exp $
inherit flag-o-matic debug multilib
MY_PV="${PV/_beta/beta}"
MY_P="${PN}-${MY_PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="GAIM Encryption PlugIn"
HOMEPAGE="http://gaim-encryption.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE=""
DEPEND=">=net-im/gaim-1.0.1
>=dev-libs/nss-3.9.2-r2"
src_unpack() {
unpack ${A}
cd ${S}
}
src_compile() {
strip-flags
replace-flags -O? -O2
econf \
--with-nspr-includes=/usr/include/nspr \
--with-nss-includes=/usr/include/nss \
--with-nspr-libs=/usr/$(get_libdir)/nspr \
--with-nss-libs=/usr/$(get_libdir)/nss\
|| die "Configuration failed"
emake -j1 || die "Make failed"
}
src_install() {
make install DESTDIR="${D}" || die "Install failed"
dodoc CHANGELOG INSTALL NOTES README TODO VERSION WISHLIST
}
|