diff options
author | Olivier Crête <tester@gentoo.org> | 2007-05-26 17:55:59 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2007-05-26 17:55:59 +0000 |
commit | 729658a6de07025cbda7d39514dd2b5cab4f24dc (patch) | |
tree | 2e12ee806bf69e3992e45248133c601324b792e7 /x11-plugins/guifications | |
parent | Updated ebuild, including an updated patch tarball. Fixing bug #110556, bug #... (diff) | |
download | gentoo-2-729658a6de07025cbda7d39514dd2b5cab4f24dc.tar.gz gentoo-2-729658a6de07025cbda7d39514dd2b5cab4f24dc.tar.bz2 gentoo-2-729658a6de07025cbda7d39514dd2b5cab4f24dc.zip |
Version bump
(Portage version: 2.1.2.2)
Diffstat (limited to 'x11-plugins/guifications')
-rw-r--r-- | x11-plugins/guifications/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/guifications/files/digest-guifications-2.14 | 3 | ||||
-rw-r--r-- | x11-plugins/guifications/guifications-2.14.ebuild | 30 |
3 files changed, 39 insertions, 1 deletions
diff --git a/x11-plugins/guifications/ChangeLog b/x11-plugins/guifications/ChangeLog index a8b5cd61cfb3..f495fda81d1f 100644 --- a/x11-plugins/guifications/ChangeLog +++ b/x11-plugins/guifications/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/guifications # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/guifications/ChangeLog,v 1.43 2007/05/01 12:46:37 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/guifications/ChangeLog,v 1.44 2007/05/26 17:55:59 tester Exp $ + +*guifications-2.14 (26 May 2007) + + 26 May 2007; Olivier Crête <tester@gentoo.org> +guifications-2.14.ebuild: + Version bump *guifications-2.13_beta7 (01 May 2007) diff --git a/x11-plugins/guifications/files/digest-guifications-2.14 b/x11-plugins/guifications/files/digest-guifications-2.14 new file mode 100644 index 000000000000..4dcdb34c66b8 --- /dev/null +++ b/x11-plugins/guifications/files/digest-guifications-2.14 @@ -0,0 +1,3 @@ +MD5 3c7b126d255d0c768a4af699c4454481 pidgin-guifications-2.14.tar.bz2 545044 +RMD160 b74f533bba0d7df45aaf9370512f3a52b5cfc407 pidgin-guifications-2.14.tar.bz2 545044 +SHA256 6ff41878af4603c5a3fbde22548846a2230f1934a63c1ae17f6334649e4d4907 pidgin-guifications-2.14.tar.bz2 545044 diff --git a/x11-plugins/guifications/guifications-2.14.ebuild b/x11-plugins/guifications/guifications-2.14.ebuild new file mode 100644 index 000000000000..a18528474d17 --- /dev/null +++ b/x11-plugins/guifications/guifications-2.14.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.14.ebuild,v 1.1 2007/05/26 17:55:59 tester Exp $ + +MY_PN=pidgin-${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 pidgin" +HOMEPAGE="http://plugins.guifications.org/" +SRC_URI="http://downloads.guifications.org/plugins//Guifications2/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc ~sparc" +IUSE="debug nls" + +DEPEND="net-im/pidgin" + +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 +} |