diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2005-12-24 19:07:08 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2005-12-24 19:07:08 +0000 |
commit | 212cc181959faf2319f78ba113f4e06016c93c0c (patch) | |
tree | 7fa7d33e0cb48f69d639731321bc1c981eb5380e /x11-wm/treewm | |
parent | add portuguese (pt) longdescription (diff) | |
download | gentoo-2-212cc181959faf2319f78ba113f4e06016c93c0c.tar.gz gentoo-2-212cc181959faf2319f78ba113f4e06016c93c0c.tar.bz2 gentoo-2-212cc181959faf2319f78ba113f4e06016c93c0c.zip |
Add compilation fix from bug 86453
(Portage version: 2.1_pre1)
Diffstat (limited to 'x11-wm/treewm')
-rw-r--r-- | x11-wm/treewm/ChangeLog | 8 | ||||
-rw-r--r-- | x11-wm/treewm/Manifest | 12 | ||||
-rw-r--r-- | x11-wm/treewm/treewm-0.4.5.ebuild | 15 |
3 files changed, 18 insertions, 17 deletions
diff --git a/x11-wm/treewm/ChangeLog b/x11-wm/treewm/ChangeLog index a1355de93d0c..9d6fb26e5fe8 100644 --- a/x11-wm/treewm/ChangeLog +++ b/x11-wm/treewm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/treewm -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/treewm/ChangeLog,v 1.14 2004/07/01 21:52:18 eradicator Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/treewm/ChangeLog,v 1.15 2005/12/24 19:07:08 vanquirius Exp $ + + 24 Dec 2005; Marcelo Goes <vanquirius@gentoo.org> treewm-0.4.5.ebuild: + Add compilation fix from bug 86453. Thanks to Francisco Jose Canizares + Santofimia <telefrancisco at lycos dot es>. 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> treewm-0.4.4.ebuild, treewm-0.4.5.ebuild: diff --git a/x11-wm/treewm/Manifest b/x11-wm/treewm/Manifest index cf7fff692291..bab5c98c66b6 100644 --- a/x11-wm/treewm/Manifest +++ b/x11-wm/treewm/Manifest @@ -1,16 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 a6f41018c750f65a61ebefd06c02a521 ChangeLog 1773 MD5 18cde1faa2834be4486edcdfe64a447a files/digest-treewm-0.4.4 64 MD5 0ff668f3a047f8841efdfc9cbfc96639 files/digest-treewm-0.4.5 64 MD5 d8597b1d818d8453c86336611b0bff71 metadata.xml 355 MD5 588e45f0fbf9aedbb19d629a60183a35 treewm-0.4.4.ebuild 681 -MD5 9e5aaaa10190f4fbfdc661de7c615f05 treewm-0.4.5.ebuild 776 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFC1TFGI1lqEGTUzyQRAkoIAJ9E2gUPXxa1fL33U8MhG92KgF/uAQCfScBS -pkeK19KIaDzociXecrk+KsY= -=D2aq ------END PGP SIGNATURE----- +MD5 9d479dd5c24d277d8baf18a9031c09cf treewm-0.4.5.ebuild 890 diff --git a/x11-wm/treewm/treewm-0.4.5.ebuild b/x11-wm/treewm/treewm-0.4.5.ebuild index 7a856affd112..2d0c97938fe2 100644 --- a/x11-wm/treewm/treewm-0.4.5.ebuild +++ b/x11-wm/treewm/treewm-0.4.5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/treewm/treewm-0.4.5.ebuild,v 1.8 2005/07/13 15:20:13 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/treewm/treewm-0.4.5.ebuild,v 1.9 2005/12/24 19:07:08 vanquirius Exp $ DESCRIPTION="WindowManager that arranges the windows in a tree (not in a list)" SRC_URI="mirror://sourceforge/treewm/${PN}-${PV}.tar.bz2" @@ -11,10 +11,17 @@ KEYWORDS="x86 sparc ppc" IUSE="" DEPEND="virtual/libc - virtual/x11" + virtual/x11 + >=sys-apps/sed-4" RDEPEND="virtual/libc - virtual/x11" + virtual/x11" + +src_unpack() { + unpack ${A} + # bug 86453 + sed -i -e "s:malloc:Malloc:g" "${S}"/xprop/dsimple.c +} src_compile() { emake PREFIX="/usr" ROOT="${D}" || die |