diff options
Diffstat (limited to 'x11-plugins/gaim-encryption/gaim-encryption-2.27-r1.ebuild')
-rw-r--r-- | x11-plugins/gaim-encryption/gaim-encryption-2.27-r1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/x11-plugins/gaim-encryption/gaim-encryption-2.27-r1.ebuild b/x11-plugins/gaim-encryption/gaim-encryption-2.27-r1.ebuild new file mode 100644 index 000000000000..7964e91d605d --- /dev/null +++ b/x11-plugins/gaim-encryption/gaim-encryption-2.27-r1.ebuild @@ -0,0 +1,47 @@ +# 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.27-r1.ebuild,v 1.1 2004/07/16 13:30:17 rizzo Exp $ + +inherit flag-o-matic eutils +use debug && inherit 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="~x86 ~sparc ~amd64 ~ppc ~alpha ~ia64 ~hppa ~mips" +IUSE="debug" + +DEPEND=">=net-im/gaim-0.79 + dev-libs/nss" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/gaim-encryption_prpl-num.diff +} + +src_compile() { + local myconf + + NSS_LIB=/usr/lib + NSS_INC=/usr/include + myconf="${myconf} --with-nspr-includes=${NSS_INC}/nspr" + myconf="${myconf} --with-nss-includes=${NSS_INC}/nss" + myconf="${myconf} --with-nspr-libs=${NSS_LIB}" + myconf="${myconf} --with-nss-libs=${NSS_LIB}" + + econf ${myconf} || 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 COPYING INSTALL NOTES README TODO VERSION WISHLIST +} + |