diff options
author | Brandon Low <lostlogic@gentoo.org> | 2004-08-27 13:50:10 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2004-08-27 13:50:10 +0000 |
commit | 8482b1ea63f0c645d2f4b3e3647a768f02155a8e (patch) | |
tree | 230b44895d3032ea9aef47c849916bfb0c03c3f7 /x11-plugins/gaim-encryption | |
parent | Version bump. (diff) | |
download | historical-8482b1ea63f0c645d2f4b3e3647a768f02155a8e.tar.gz historical-8482b1ea63f0c645d2f4b3e3647a768f02155a8e.tar.bz2 historical-8482b1ea63f0c645d2f4b3e3647a768f02155a8e.zip |
Bump, thanks to Benjamin Martin <outrage@gmx.net> on bug 61909
Diffstat (limited to 'x11-plugins/gaim-encryption')
-rw-r--r-- | x11-plugins/gaim-encryption/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/gaim-encryption/Manifest | 6 | ||||
-rw-r--r-- | x11-plugins/gaim-encryption/files/digest-gaim-encryption-2.30 | 1 | ||||
-rw-r--r-- | x11-plugins/gaim-encryption/gaim-encryption-2.30.ebuild | 39 |
4 files changed, 51 insertions, 3 deletions
diff --git a/x11-plugins/gaim-encryption/ChangeLog b/x11-plugins/gaim-encryption/ChangeLog index 37cea32d6940..56d3d4ca4eb2 100644 --- a/x11-plugins/gaim-encryption/ChangeLog +++ b/x11-plugins/gaim-encryption/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/gaim-encryption # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-encryption/ChangeLog,v 1.19 2004/08/26 16:08:35 plasmaroo Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-encryption/ChangeLog,v 1.20 2004/08/27 13:50:10 lostlogic Exp $ + +*gaim-encryption-2.30 (27 Aug 2004) + + 27 Aug 2004; Brandon Low <lostlogic@gentoo.org> + +gaim-encryption-2.30.ebuild: + Bump, thanks to Benjamin Martin <outrage@gmx.net> on bug 61909 26 Aug 2004; <plasmaroo@gentoo.org> gaim-encryption-2.29.ebuild: Marking stable on IA64, bug #61457. diff --git a/x11-plugins/gaim-encryption/Manifest b/x11-plugins/gaim-encryption/Manifest index a1ec272a844a..64cbb2a32430 100644 --- a/x11-plugins/gaim-encryption/Manifest +++ b/x11-plugins/gaim-encryption/Manifest @@ -1,6 +1,8 @@ -MD5 2621370cc3f0e7470a193c35f95a39fe ChangeLog 6564 -MD5 ab7db4bf9ff48c8de9da14fd12f6c15c metadata.xml 344 MD5 bb162c17660316ce0125f9de02a01d6f gaim-encryption-2.29.ebuild 1109 +MD5 6424dda30f092e09677208bdb47fcc43 gaim-encryption-2.30.ebuild 1096 MD5 f10f1caad1b77674a58acf2635e52910 gaim-encryption-2.28.ebuild 1114 +MD5 16c30a0a6f0f43482b75c18fd84eb938 ChangeLog 6749 +MD5 ab7db4bf9ff48c8de9da14fd12f6c15c metadata.xml 344 MD5 4199a4a07c312219c1667706cd77df4f files/digest-gaim-encryption-2.28 72 MD5 571e96ba73294761bf61482053d3f169 files/digest-gaim-encryption-2.29 72 +MD5 95c12d6da2c16c80baccdd20cb9032b4 files/digest-gaim-encryption-2.30 72 diff --git a/x11-plugins/gaim-encryption/files/digest-gaim-encryption-2.30 b/x11-plugins/gaim-encryption/files/digest-gaim-encryption-2.30 new file mode 100644 index 000000000000..873036d05775 --- /dev/null +++ b/x11-plugins/gaim-encryption/files/digest-gaim-encryption-2.30 @@ -0,0 +1 @@ +MD5 a052a705c3d76a9fc68fcb49ba163389 gaim-encryption-2.30.tar.gz 484656 diff --git a/x11-plugins/gaim-encryption/gaim-encryption-2.30.ebuild b/x11-plugins/gaim-encryption/gaim-encryption-2.30.ebuild new file mode 100644 index 000000000000..1a869a7826a5 --- /dev/null +++ b/x11-plugins/gaim-encryption/gaim-encryption-2.30.ebuild @@ -0,0 +1,39 @@ +# 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.30.ebuild,v 1.1 2004/08/27 13:50:10 lostlogic 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="~x86 ~ppc ~sparc ~mips ~alpha ~hppa ~amd64 ~ia64" +IUSE="" + +DEPEND=">=net-im/gaim-0.80 + dev-libs/nss" + +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 INSTALL NOTES README TODO VERSION WISHLIST +} |