diff options
author | Don Seiler <rizzo@gentoo.org> | 2005-05-13 14:05:00 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2005-05-13 14:05:00 +0000 |
commit | 1a8562191b3dfee7f900732a64e9feeb2877b09b (patch) | |
tree | 30ad2cda75645dc177610fd11f9f81a1ff80f41f /x11-plugins/gaim-encryption/gaim-encryption-2.37.ebuild | |
parent | Remove net-misc/kluje from portage (#63972). (diff) | |
download | gentoo-2-1a8562191b3dfee7f900732a64e9feeb2877b09b.tar.gz gentoo-2-1a8562191b3dfee7f900732a64e9feeb2877b09b.tar.bz2 gentoo-2-1a8562191b3dfee7f900732a64e9feeb2877b09b.zip |
Version bump
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'x11-plugins/gaim-encryption/gaim-encryption-2.37.ebuild')
-rw-r--r-- | x11-plugins/gaim-encryption/gaim-encryption-2.37.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/x11-plugins/gaim-encryption/gaim-encryption-2.37.ebuild b/x11-plugins/gaim-encryption/gaim-encryption-2.37.ebuild new file mode 100644 index 000000000000..1748d6019d5c --- /dev/null +++ b/x11-plugins/gaim-encryption/gaim-encryption-2.37.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2005 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.37.ebuild,v 1.1 2005/05/13 14:05:00 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 ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND=">=net-im/gaim-1.0.1 + >=dev-libs/nss-3.9.2-r2" + +src_compile() { + strip-flags + replace-flags -O? -O2 + + local myconf + myconf="${myconf} --with-nspr-includes=/usr/include/nspr" + myconf="${myconf} --with-nss-includes=/usr/include/nss" + myconf="${myconf} --with-nspr-libs=/usr/lib/nspr" + myconf="${myconf} --with-nss-libs=/usr/lib/nss" + + econf ${myconf} || die "Configuration failed" + + emake || MAKEOPTS="${MAKEOPTS} -j1" emake || die "Make failed" +} + +src_install() { + make install DESTDIR=${D} || die "Install failed" + dodoc CHANGELOG INSTALL NOTES README TODO VERSION WISHLIST +} |