diff options
author | Kathryn Kulick <gothgirl@gentoo.org> | 2006-10-23 03:38:43 +0000 |
---|---|---|
committer | Kathryn Kulick <gothgirl@gentoo.org> | 2006-10-23 03:38:43 +0000 |
commit | c58c1418740eaa94d2607a7c8f6512dc976ad4d8 (patch) | |
tree | 0edbbe663724a4d0da656336e8a9fcdc86214b6a /x11-plugins | |
parent | Version bump. (diff) | |
download | gentoo-2-c58c1418740eaa94d2607a7c8f6512dc976ad4d8.tar.gz gentoo-2-c58c1418740eaa94d2607a7c8f6512dc976ad4d8.tar.bz2 gentoo-2-c58c1418740eaa94d2607a7c8f6512dc976ad4d8.zip |
version bump to work with gaim-2.0.0_beta4
(Portage version: 2.1.2_pre3-r6)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/guifications/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/guifications/files/digest-guifications-2.13_beta4 | 3 | ||||
-rw-r--r-- | x11-plugins/guifications/guifications-2.13_beta4.ebuild | 30 |
3 files changed, 40 insertions, 1 deletions
diff --git a/x11-plugins/guifications/ChangeLog b/x11-plugins/guifications/ChangeLog index bf5c4a3bbded..0c653c3400c8 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.37 2006/07/05 12:24:02 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/guifications/ChangeLog,v 1.38 2006/10/23 03:38:43 gothgirl Exp $ + +*guifications-2.13_beta4 (23 Oct 2006) + + 23 Oct 2006; gothgirl <gothgirl@gentoo.org> + +guifications-2.13_beta4.ebuild: + version bump to work with gaim-2.0.0_beta4 05 Jul 2006; gothgirl <gothgirl@gentoo.org> -guifications-2.8.ebuild, -guifications-2.13_beta2.ebuild: diff --git a/x11-plugins/guifications/files/digest-guifications-2.13_beta4 b/x11-plugins/guifications/files/digest-guifications-2.13_beta4 new file mode 100644 index 000000000000..d2517cda2905 --- /dev/null +++ b/x11-plugins/guifications/files/digest-guifications-2.13_beta4 @@ -0,0 +1,3 @@ +MD5 0fcbec6f7e9b106c03169ad1ca3a983c gaim-guifications-2.13beta4.tar.bz2 559001 +RMD160 2f564fd34f490d019e53b7a1eb88e2cc693d2248 gaim-guifications-2.13beta4.tar.bz2 559001 +SHA256 e72ba70e1682ef8a1fef4b09db070c6e87355960d8fe8b75b30dec2cff1162f9 gaim-guifications-2.13beta4.tar.bz2 559001 diff --git a/x11-plugins/guifications/guifications-2.13_beta4.ebuild b/x11-plugins/guifications/guifications-2.13_beta4.ebuild new file mode 100644 index 000000000000..1e576e0cd5f5 --- /dev/null +++ b/x11-plugins/guifications/guifications-2.13_beta4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/guifications/guifications-2.13_beta4.ebuild,v 1.1 2006/10/23 03:38:43 gothgirl 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_beta4*" + +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 +} |