blob: c6e39bb0e854b0c1c47e971c6b9a6651118ccf5d (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-encryption/gaim-encryption-2.32-r1.ebuild,v 1.3 2004/11/29 20:01:50 rizzo Exp $
inherit flag-o-matic eutils debug
DESCRIPTION="GAIM Encryption PlugIn"
HOMEPAGE="http://gaim-encryption.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~ppc64"
IUSE=""
DEPEND=">=net-im/gaim-1.0.1
|| ( >=dev-libs/nss-3.9.2-r2 net-www/mozilla-firefox net-www/mozilla )"
src_compile() {
econf || die "Configuration failed"
einfo "Replacing -Os CFLAG with -O2"
replace-flags -Os -O2
emake || emake -j1 || die "Make failed"
}
src_install() {
einstall || die "Install failed"
dodoc CHANGELOG INSTALL NOTES README TODO VERSION WISHLIST
}
|