diff options
author | Don Seiler <rizzo@gentoo.org> | 2005-02-27 23:25:33 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2005-02-27 23:25:33 +0000 |
commit | 523998c96b4999c1c447038054697ed4f6cebfe2 (patch) | |
tree | 5b652fc07d1ba64307e2d4295d9f37912e7e4fef /x11-plugins/gaim-encryption | |
parent | Fix milter stuff. Closes #83477. (diff) | |
download | historical-523998c96b4999c1c447038054697ed4f6cebfe2.tar.gz historical-523998c96b4999c1c447038054697ed4f6cebfe2.tar.bz2 historical-523998c96b4999c1c447038054697ed4f6cebfe2.zip |
Version bump, closes Bug #83498
Package-Manager: portage-2.0.51.17
Diffstat (limited to 'x11-plugins/gaim-encryption')
-rw-r--r-- | x11-plugins/gaim-encryption/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/gaim-encryption/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/gaim-encryption/files/digest-gaim-encryption-2.35 | 1 | ||||
-rw-r--r-- | x11-plugins/gaim-encryption/gaim-encryption-2.35.ebuild | 37 |
4 files changed, 47 insertions, 2 deletions
diff --git a/x11-plugins/gaim-encryption/ChangeLog b/x11-plugins/gaim-encryption/ChangeLog index 35442938d73c..39c89f71a03a 100644 --- a/x11-plugins/gaim-encryption/ChangeLog +++ b/x11-plugins/gaim-encryption/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/gaim-encryption # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-encryption/ChangeLog,v 1.54 2005/02/04 06:24:02 geoman Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-encryption/ChangeLog,v 1.55 2005/02/27 23:25:33 rizzo Exp $ + +*gaim-encryption-2.35 (27 Feb 2005) + + 27 Feb 2005; Don Seiler <rizzo@gentoo.org> +gaim-encryption-2.35.ebuild: + Version bump, closes Bug #83498 04 Feb 2005; Stephen P. Becker <geoman@gentoo.org> gaim-encryption-2.32-r1.ebuild: diff --git a/x11-plugins/gaim-encryption/Manifest b/x11-plugins/gaim-encryption/Manifest index a6ec11a8efe9..de70d14618b7 100644 --- a/x11-plugins/gaim-encryption/Manifest +++ b/x11-plugins/gaim-encryption/Manifest @@ -1,6 +1,8 @@ -MD5 06f0eec5fa7902607b6e6b2388876c3e ChangeLog 10905 +MD5 64d89896ea54db6f41cfa768fa5a2deb ChangeLog 11051 +MD5 09aa3ac64ad74f5544b67464a08bec91 gaim-encryption-2.35.ebuild 1100 MD5 ab7db4bf9ff48c8de9da14fd12f6c15c metadata.xml 344 MD5 dd653134cb5de0c4eb8f5257b8c43782 gaim-encryption-2.32-r1.ebuild 1094 MD5 08ef19b15b360a31a6fb78498ec80f1a gaim-encryption-2.34.ebuild 1100 MD5 ff64a30a61d21ad47aab6594e4b1325b files/digest-gaim-encryption-2.32-r1 72 +MD5 1bba644fecfb18831e18edb3d06f0de5 files/digest-gaim-encryption-2.35 72 MD5 69dd2444e1c1a7c90b61128c9912f975 files/digest-gaim-encryption-2.34 72 diff --git a/x11-plugins/gaim-encryption/files/digest-gaim-encryption-2.35 b/x11-plugins/gaim-encryption/files/digest-gaim-encryption-2.35 new file mode 100644 index 000000000000..3a1daa07dba9 --- /dev/null +++ b/x11-plugins/gaim-encryption/files/digest-gaim-encryption-2.35 @@ -0,0 +1 @@ +MD5 15e280f11cb44da2212bbab38bddd81e gaim-encryption-2.35.tar.gz 545001 diff --git a/x11-plugins/gaim-encryption/gaim-encryption-2.35.ebuild b/x11-plugins/gaim-encryption/gaim-encryption-2.35.ebuild new file mode 100644 index 000000000000..1e4bd97738f7 --- /dev/null +++ b/x11-plugins/gaim-encryption/gaim-encryption-2.35.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.35.ebuild,v 1.1 2005/02/27 23:25:33 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" + +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 +} |