diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-01-12 11:39:28 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-01-12 11:39:28 +0000 |
commit | a0e64df82549b25a0a952256d7ac58a81db5362c (patch) | |
tree | b6d3ef3344e4a387970482d9ecd8e1b4c2e29776 /x11-plugins/wmfire | |
parent | Fixup building on uClibc #203711. (diff) | |
download | gentoo-2-a0e64df82549b25a0a952256d7ac58a81db5362c.tar.gz gentoo-2-a0e64df82549b25a0a952256d7ac58a81db5362c.tar.bz2 gentoo-2-a0e64df82549b25a0a952256d7ac58a81db5362c.zip |
Version bump wrt #203120, thanks to Denilson for reporting.
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'x11-plugins/wmfire')
-rw-r--r-- | x11-plugins/wmfire/ChangeLog | 10 | ||||
-rw-r--r-- | x11-plugins/wmfire/files/digest-wmfire-1.2.3 | 3 | ||||
-rw-r--r-- | x11-plugins/wmfire/files/wmfire-1.2.3-stringh.patch | 11 | ||||
-rw-r--r-- | x11-plugins/wmfire/wmfire-1.2.3.ebuild | 39 |
4 files changed, 61 insertions, 2 deletions
diff --git a/x11-plugins/wmfire/ChangeLog b/x11-plugins/wmfire/ChangeLog index e8cea169f7b4..91e3aa25ff67 100644 --- a/x11-plugins/wmfire/ChangeLog +++ b/x11-plugins/wmfire/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/wmfire -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/ChangeLog,v 1.9 2007/07/22 05:09:22 dberkholz Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/ChangeLog,v 1.10 2008/01/12 11:39:27 drac Exp $ + +*wmfire-1.2.3 (12 Jan 2008) + + 12 Jan 2008; Samuli Suominen <drac@gentoo.org> + +files/wmfire-1.2.3-stringh.patch, +wmfire-1.2.3.ebuild: + Version bump wrt #203120, thanks to Denilson for reporting. 22 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>; wmfire-0.0.3.9_pre4.ebuild: diff --git a/x11-plugins/wmfire/files/digest-wmfire-1.2.3 b/x11-plugins/wmfire/files/digest-wmfire-1.2.3 new file mode 100644 index 000000000000..bdec9d8bd22d --- /dev/null +++ b/x11-plugins/wmfire/files/digest-wmfire-1.2.3 @@ -0,0 +1,3 @@ +MD5 e4bc647777f2181cf1b8e78bcc0850ee wmfire-1.2.3.tar.gz 90979 +RMD160 af3e38cb2fbf7f5dfe5e0776d43ca3b8117fc813 wmfire-1.2.3.tar.gz 90979 +SHA256 a254ca65b1df302c35dc5cdabd1d991889816389fb3e92084469c27a090559ba wmfire-1.2.3.tar.gz 90979 diff --git a/x11-plugins/wmfire/files/wmfire-1.2.3-stringh.patch b/x11-plugins/wmfire/files/wmfire-1.2.3-stringh.patch new file mode 100644 index 000000000000..a0fcfdcdc6e3 --- /dev/null +++ b/x11-plugins/wmfire/files/wmfire-1.2.3-stringh.patch @@ -0,0 +1,11 @@ +diff -ur wmfire-1.2.3.orig/src/session.c wmfire-1.2.3/src/session.c +--- wmfire-1.2.3.orig/src/session.c 2005-12-04 12:39:16.000000000 +0200 ++++ wmfire-1.2.3/src/session.c 2008-01-12 13:26:04.000000000 +0200 +@@ -21,6 +21,7 @@ + #include <stdio.h> + #include <stdlib.h> + #include <unistd.h> ++#include <string.h> + #include <sys/types.h> + #include <pwd.h> + diff --git a/x11-plugins/wmfire/wmfire-1.2.3.ebuild b/x11-plugins/wmfire/wmfire-1.2.3.ebuild new file mode 100644 index 000000000000..ccb9d797b3fc --- /dev/null +++ b/x11-plugins/wmfire/wmfire-1.2.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/wmfire-1.2.3.ebuild,v 1.1 2008/01/12 11:39:27 drac Exp $ + +inherit eutils + +DESCRIPTION="Load monitoring dockapp displaying dancing flame." +HOMEPAGE="http://www.swanson.ukfsn.org/#wmfire" +SRC_URI="http://www.swanson.ukfsn.org/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND=">=x11-libs/gtk+-2 + >=gnome-base/libgtop-2 + x11-libs/libSM + x11-libs/libICE + x11-libs/libX11 + x11-libs/libXext" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-stringh.patch +} + +src_compile() { + econf --enable-session + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc ALL_I_GET_IS_A_GREY_BOX AUTHORS ChangeLog NEWS README +} |