diff options
author | Olivier Crête <tester@gentoo.org> | 2007-01-27 02:49:49 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2007-01-27 02:49:49 +0000 |
commit | 3331d3aaa22efb61b2d8e7a3833934f637ab35d0 (patch) | |
tree | a5a422fbca284f0067e75690561f3dedef8f0765 /x11-plugins/guifications | |
parent | Stable for HPPA (bug #163872). (diff) | |
download | gentoo-2-3331d3aaa22efb61b2d8e7a3833934f637ab35d0.tar.gz gentoo-2-3331d3aaa22efb61b2d8e7a3833934f637ab35d0.tar.bz2 gentoo-2-3331d3aaa22efb61b2d8e7a3833934f637ab35d0.zip |
Mark beta5 as compatible with gaim beta6 and added beta6, fixes #163539
(Portage version: 2.1.1-r2)
Diffstat (limited to 'x11-plugins/guifications')
4 files changed, 44 insertions, 5 deletions
diff --git a/x11-plugins/guifications/ChangeLog b/x11-plugins/guifications/ChangeLog index 0412eb6dcc55..c745f2405fff 100644 --- a/x11-plugins/guifications/ChangeLog +++ b/x11-plugins/guifications/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/guifications -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/guifications/ChangeLog,v 1.40 2006/12/19 23:49:01 mr_bones_ Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/guifications/ChangeLog,v 1.41 2007/01/27 02:49:49 tester Exp $ + +*guifications-2.13_beta6 (27 Jan 2007) + + 27 Jan 2007; Olivier Crête <tester@gentoo.org> + guifications-2.13_beta5.ebuild, +guifications-2.13_beta6.ebuild: + Mark beta5 as compatible with gaim beta6 and added beta6, fixes #163539 19 Dec 2006; Michael Sterrett <mr_bones_@gentoo.org> -guifications-2.13_beta4.ebuild: diff --git a/x11-plugins/guifications/files/digest-guifications-2.13_beta6 b/x11-plugins/guifications/files/digest-guifications-2.13_beta6 new file mode 100644 index 000000000000..0f999349c555 --- /dev/null +++ b/x11-plugins/guifications/files/digest-guifications-2.13_beta6 @@ -0,0 +1,3 @@ +MD5 5e54b085c57fa97d9ff4eb35da931aba gaim-guifications-2.13beta6.tar.bz2 552840 +RMD160 0114a65cfc9c57230726e718a89e52cb8af8aa2f gaim-guifications-2.13beta6.tar.bz2 552840 +SHA256 bfb87811b2f7560d088c338b01c8ca33d10f8f97c7812d6f6ea5609d74d306f9 gaim-guifications-2.13beta6.tar.bz2 552840 diff --git a/x11-plugins/guifications/guifications-2.13_beta5.ebuild b/x11-plugins/guifications/guifications-2.13_beta5.ebuild index 60f2fe11df70..5ccd23fc6cc9 100644 --- a/x11-plugins/guifications/guifications-2.13_beta5.ebuild +++ b/x11-plugins/guifications/guifications-2.13_beta5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/guifications/guifications-2.13_beta5.ebuild,v 1.1 2006/11/12 04:30:53 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/guifications/guifications-2.13_beta5.ebuild,v 1.2 2007/01/27 02:49:49 tester Exp $ MY_PN=gaim-${PN} MY_PV=${PV/_beta/beta} @@ -15,7 +15,7 @@ SLOT="0" KEYWORDS="~x86 ~amd64 ~ppc ~sparc" IUSE="debug nls" -DEPEND="=net-im/gaim-2.0.0_beta5*" +DEPEND=">=net-im/gaim-2.0.0_beta5" src_compile() { econf \ diff --git a/x11-plugins/guifications/guifications-2.13_beta6.ebuild b/x11-plugins/guifications/guifications-2.13_beta6.ebuild new file mode 100644 index 000000000000..294bfbde8a5d --- /dev/null +++ b/x11-plugins/guifications/guifications-2.13_beta6.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/guifications/guifications-2.13_beta6.ebuild,v 1.1 2007/01/27 02:49:49 tester Exp $ + +MY_PN=gaim-${PN} +MY_PV=${PV/_beta/beta} +MY_P=${MY_PN}-${MY_PV} +S="${WORKDIR}/${MY_P}" +DESCRIPTION="Guifications is a graphical notification plugin for the open source instant message client gaim" +HOMEPAGE="http://gaim.guifications.org" +SRC_URI="http://downloads.guifications.org/gaim-plugins//Guifications2/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc ~sparc" +IUSE="debug nls" + +DEPEND="=net-im/gaim-2.0.0_beta6" + +src_compile() { + econf \ + $(use_enable debug ) \ + $(use_enable nls) || die "econf failure" + emake || die "emake failure" +} + +src_install() { + make install DESTDIR=${D} || die "make install failure" + dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO VERSION +} |