summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukasz Strzygowski <lucass@gentoo.org>2006-07-25 20:49:28 +0000
committerLukasz Strzygowski <lucass@gentoo.org>2006-07-25 20:49:28 +0000
commita0a45c4be983c00c053d95f9d05eb16c28cadb97 (patch)
treeb76ea3076923a0d3bc3bd065d8e7ad9f30232d4b /x11-misc/trayer
parentAdded patch from bug #108328 and marking stable on amd64 and x86. (diff)
downloadgentoo-2-a0a45c4be983c00c053d95f9d05eb16c28cadb97.tar.gz
gentoo-2-a0a45c4be983c00c053d95f9d05eb16c28cadb97.tar.bz2
gentoo-2-a0a45c4be983c00c053d95f9d05eb16c28cadb97.zip
Fix for as-needed, bug #141707.
(Portage version: 2.1.1_pre2-r8)
Diffstat (limited to 'x11-misc/trayer')
-rw-r--r--x11-misc/trayer/ChangeLog5
-rw-r--r--x11-misc/trayer/files/digest-trayer-1.02
-rw-r--r--x11-misc/trayer/trayer-1.0.ebuild12
3 files changed, 17 insertions, 2 deletions
diff --git a/x11-misc/trayer/ChangeLog b/x11-misc/trayer/ChangeLog
index a07e338f85f2..4f4551cade2e 100644
--- a/x11-misc/trayer/ChangeLog
+++ b/x11-misc/trayer/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-misc/trayer
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/trayer/ChangeLog,v 1.10 2006/05/23 20:30:17 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/trayer/ChangeLog,v 1.11 2006/07/25 20:49:28 lucass Exp $
+
+ 25 Jul 2006; Lukasz Strzygowski <lucass@gentoo.org> trayer-1.0.ebuild:
+ Fix for as-needed, bug #141707.
23 May 2006; Markus Rothe <corsair@gentoo.org> trayer-1.0.ebuild:
Stable on ppc64
diff --git a/x11-misc/trayer/files/digest-trayer-1.0 b/x11-misc/trayer/files/digest-trayer-1.0
index 98454f0302a4..24726f9ab1e5 100644
--- a/x11-misc/trayer/files/digest-trayer-1.0
+++ b/x11-misc/trayer/files/digest-trayer-1.0
@@ -1 +1,3 @@
MD5 9acac948017bf1b5fc50bc1117c9b098 trayer-1.0.tar.gz 30445
+RMD160 decb89b8348390c6cd26de1b1a6ef1f32ca1837d trayer-1.0.tar.gz 30445
+SHA256 896647e972a0b189b8368a7de30480e90eede0078ebdbdb62051f18a58070fbd trayer-1.0.tar.gz 30445
diff --git a/x11-misc/trayer/trayer-1.0.ebuild b/x11-misc/trayer/trayer-1.0.ebuild
index db7adc0270a1..b33684d375d2 100644
--- a/x11-misc/trayer/trayer-1.0.ebuild
+++ b/x11-misc/trayer/trayer-1.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/trayer/trayer-1.0.ebuild,v 1.10 2006/05/23 20:30:17 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/trayer/trayer-1.0.ebuild,v 1.11 2006/07/25 20:49:28 lucass Exp $
DESCRIPTION="Lightweight GTK2-based systray for UNIX desktop"
HOMEPAGE="http://fvwm-crystal.berlios.de/"
@@ -11,6 +11,16 @@ KEYWORDS="~amd64 ppc ppc64 sparc x86"
IUSE=""
DEPEND=">=x11-libs/gtk+-2"
+src_unpack() {
+ unpack "${A}"
+ cd "${S}"
+
+ # fix for as-needed, bug #141707
+ sed -i Makefile \
+ -e 's/$(LIBS) $(OBJ) $(SYSTRAYOBJ)/$(OBJ) $(SYSTRAYOBJ) $(LIBS)/'
+}
+
+
src_compile() {
emake -j1 CFLAGS="${CFLAGS}" || die "emake failed"
}