diff options
author | Kathryn Kulick <gothgirl@gentoo.org> | 2006-11-12 01:02:29 +0000 |
---|---|---|
committer | Kathryn Kulick <gothgirl@gentoo.org> | 2006-11-12 01:02:29 +0000 |
commit | ce191564aebd656a4e100a76d4fc9305f82b1149 (patch) | |
tree | 5c48c1a35e41b150cccb3fe26570f2b09291f0de /x11-plugins/gaim-encryption | |
parent | Now really fix #154140 (diff) | |
download | gentoo-2-ce191564aebd656a4e100a76d4fc9305f82b1149.tar.gz gentoo-2-ce191564aebd656a4e100a76d4fc9305f82b1149.tar.bz2 gentoo-2-ce191564aebd656a4e100a76d4fc9305f82b1149.zip |
version bump for compatibility with gaim-2.0.0_beta5 thanks Anarchy
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'x11-plugins/gaim-encryption')
4 files changed, 48 insertions, 4 deletions
diff --git a/x11-plugins/gaim-encryption/ChangeLog b/x11-plugins/gaim-encryption/ChangeLog index a72a92f1d3a4..f2fce23303f8 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-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-encryption/ChangeLog,v 1.83 2006/10/25 02:44:28 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-encryption/ChangeLog,v 1.84 2006/11/12 01:02:29 gothgirl Exp $ + +*gaim-encryption-3.0_beta7 (12 Nov 2006) + + 12 Nov 2006; gothgirl <gothgirl@gentoo.org> + +gaim-encryption-3.0_beta7.ebuild: + version bump for compatibility with gaim-2.0.0_beta5 thanks Anarchy *gaim-encryption-3.0_beta6-r1 (25 Oct 2006) diff --git a/x11-plugins/gaim-encryption/files/digest-gaim-encryption-3.0_beta6-r1 b/x11-plugins/gaim-encryption/files/digest-gaim-encryption-3.0_beta6-r1 index 00255c4961c3..dfebfed55178 100644 --- a/x11-plugins/gaim-encryption/files/digest-gaim-encryption-3.0_beta6-r1 +++ b/x11-plugins/gaim-encryption/files/digest-gaim-encryption-3.0_beta6-r1 @@ -1,3 +1,3 @@ -MD5 807cbfc78a25e3e16ad8595522fb79cf gaim-encryption-3.0beta6.1.tar.gz 590350 -RMD160 754b5e342db58fb6023c960d75cf7da35f3373ab gaim-encryption-3.0beta6.1.tar.gz 590350 -SHA256 57078ff3e85b207737d0d9b63e52c3aad33bd9cd6a225ac404001c0fa9904d4e gaim-encryption-3.0beta6.1.tar.gz 590350 +MD5 8684f11a9c971979a2271d5a3bd707dd gaim-encryption-3.0beta6.1.tar.gz 472048 +RMD160 96d8076ab9ff4d71e476e4f89b68b27094abeb18 gaim-encryption-3.0beta6.1.tar.gz 472048 +SHA256 099a92f0392426f7e8ef2e5160699281c6332ff32bb1227a5afcb18ad569ea0d gaim-encryption-3.0beta6.1.tar.gz 472048 diff --git a/x11-plugins/gaim-encryption/files/digest-gaim-encryption-3.0_beta7 b/x11-plugins/gaim-encryption/files/digest-gaim-encryption-3.0_beta7 new file mode 100644 index 000000000000..3eadee70d746 --- /dev/null +++ b/x11-plugins/gaim-encryption/files/digest-gaim-encryption-3.0_beta7 @@ -0,0 +1,3 @@ +MD5 b6005af1c898ead119ebe0e674ddc5d3 gaim-encryption-3.0beta7.tar.gz 585751 +RMD160 b0997ecd5d33fcc02f3be457ddcc8edb994b6462 gaim-encryption-3.0beta7.tar.gz 585751 +SHA256 5bc86a1a855ff25fd416a2f0d755ac934322e65c08740f67b93f1d851f5f0dfe gaim-encryption-3.0beta7.tar.gz 585751 diff --git a/x11-plugins/gaim-encryption/gaim-encryption-3.0_beta7.ebuild b/x11-plugins/gaim-encryption/gaim-encryption-3.0_beta7.ebuild new file mode 100644 index 000000000000..6d13f9f9ff12 --- /dev/null +++ b/x11-plugins/gaim-encryption/gaim-encryption-3.0_beta7.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-encryption/gaim-encryption-3.0_beta7.ebuild,v 1.1 2006/11/12 01:02:29 gothgirl Exp $ + +inherit flag-o-matic debug eutils + +MY_PV="${PV/_beta/beta}" +MY_P="${PN}-${MY_PV}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="GAIM Encryption PlugIn" +HOMEPAGE="http://gaim-encryption.sourceforge.net/" +SRC_URI="mirror://gentoo/${PN}/${MY_P}.tar.gz + http://dev.gentoo.org/~gothgirl/dist/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="nls" + +DEPEND=">=net-im/gaim-1.0.1 + >=dev-libs/nss-3.11" + +src_compile() { + strip-flags + replace-flags -O? -O2 + econf \ + $(use_enable nls) || die "failed running configure" + emake -j1 || die "Make failed" +} + +src_install() { + make install DESTDIR="${D}" || die "Install failed" + dodoc CHANGELOG INSTALL NOTES README TODO VERSION WISHLIST +} |