diff options
-rw-r--r-- | x11-plugins/i8krellm/ChangeLog | 10 | ||||
-rw-r--r-- | x11-plugins/i8krellm/files/i8krellm-2.5-Respect-LDFLAGS.patch | 12 | ||||
-rw-r--r-- | x11-plugins/i8krellm/i8krellm-2.5-r1.ebuild | 22 |
3 files changed, 42 insertions, 2 deletions
diff --git a/x11-plugins/i8krellm/ChangeLog b/x11-plugins/i8krellm/ChangeLog index 64bb53a6258e..cd071cac9700 100644 --- a/x11-plugins/i8krellm/ChangeLog +++ b/x11-plugins/i8krellm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/i8krellm -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/i8krellm/ChangeLog,v 1.11 2007/03/12 21:13:44 lack Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/i8krellm/ChangeLog,v 1.12 2010/08/11 13:37:36 lack Exp $ + +*i8krellm-2.5-r1 (11 Aug 2010) + + 11 Aug 2010; Jim Ramsay <lack@gentoo.org> +i8krellm-2.5-r1.ebuild, + +files/i8krellm-2.5-Respect-LDFLAGS.patch: + Respect LDFLAGS (Bug #331873) 12 Mar 2007; Jim Ramsay <lack@gentoo.org> i8krellm-2.5.ebuild: Updated to use new gkrellm-plugin eclass diff --git a/x11-plugins/i8krellm/files/i8krellm-2.5-Respect-LDFLAGS.patch b/x11-plugins/i8krellm/files/i8krellm-2.5-Respect-LDFLAGS.patch new file mode 100644 index 000000000000..bc740a415e35 --- /dev/null +++ b/x11-plugins/i8krellm/files/i8krellm-2.5-Respect-LDFLAGS.patch @@ -0,0 +1,12 @@ +diff --git a/Makefile b/Makefile +index 443a911..ba83210 100644 +--- a/Makefile ++++ b/Makefile +@@ -3,6 +3,7 @@ + # + + LFLAGS = -shared ++LFLAGS += $(LDFLAGS) + + + ## Support for GKrellM 2.0 diff --git a/x11-plugins/i8krellm/i8krellm-2.5-r1.ebuild b/x11-plugins/i8krellm/i8krellm-2.5-r1.ebuild new file mode 100644 index 000000000000..837eccfd3e5d --- /dev/null +++ b/x11-plugins/i8krellm/i8krellm-2.5-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/i8krellm/i8krellm-2.5-r1.ebuild,v 1.1 2010/08/11 13:37:36 lack Exp $ + +EAPI=3 +inherit gkrellm-plugin + +DESCRIPTION="GKrellM2 Plugin for the Dell Inspiron and Latitude notebooks" +SRC_URI="http://www.coding-zone.com/${P}.tar.gz" +HOMEPAGE="http://www.coding-zone.com/?page=i8krellm" +IUSE="" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="-* ~x86" + +RDEPEND=">=app-laptop/i8kutils-1.5" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch "${FILESDIR}/${P}-Respect-LDFLAGS.patch" +} |