diff options
author | 2005-06-05 14:18:13 +0000 | |
---|---|---|
committer | 2005-06-05 14:18:13 +0000 | |
commit | bfe5c90a25ad03946edb3a78ee12d507c8125761 (patch) | |
tree | 5a9cdf78ca30b27f38c62314569f7993bf9b0210 /x11-misc | |
parent | Removed trailing whitespaces. (diff) | |
download | historical-bfe5c90a25ad03946edb3a78ee12d507c8125761.tar.gz historical-bfe5c90a25ad03946edb3a78ee12d507c8125761.tar.bz2 historical-bfe5c90a25ad03946edb3a78ee12d507c8125761.zip |
Fixed bug #82626.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xwit/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xwit/Manifest | 15 | ||||
-rw-r--r-- | x11-misc/xwit/files/malloc.patch | 11 | ||||
-rw-r--r-- | x11-misc/xwit/xwit-3.4.ebuild | 8 |
4 files changed, 36 insertions, 6 deletions
diff --git a/x11-misc/xwit/ChangeLog b/x11-misc/xwit/ChangeLog index fc792e738256..4e857120c991 100644 --- a/x11-misc/xwit/ChangeLog +++ b/x11-misc/xwit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/xwit -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xwit/ChangeLog,v 1.3 2004/06/24 22:46:44 agriffis Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xwit/ChangeLog,v 1.4 2005/06/05 14:18:13 pyrania Exp $ + + 05 Jun 2005; Markus Nigbur <pyrania@gentoo.org> +files/malloc.patch, + xwit-3.4.ebuild: + Fixed bug #82626. 11 Apr 2004; Markus Nigbur <pyrania@gentoo.org> xwit-3.4.ebuild: Marked stable. diff --git a/x11-misc/xwit/Manifest b/x11-misc/xwit/Manifest index 73fde285d69d..f391fbaad556 100644 --- a/x11-misc/xwit/Manifest +++ b/x11-misc/xwit/Manifest @@ -1,4 +1,15 @@ -MD5 ccb9089a9d0e9b21e7f26a347187a06c xwit-3.4.ebuild 734 -MD5 d14c20b281f2d9e5b0c912b6a626a88f ChangeLog 469 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 6cea4b70ee8adefafff3698d6e98b360 ChangeLog 579 MD5 fe402b096905cae8dcb4a503d3a838ac metadata.xml 173 +MD5 27991433c2879200f026159ed1262f0d xwit-3.4.ebuild 784 +MD5 78197b7ebd98561a622ed0c63705e0d1 files/malloc.patch 284 MD5 86f9cfab9b1b64db4bd58e94cc8148fb files/digest-xwit-3.4 59 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.1 (GNU/Linux) + +iD8DBQFCownPI7fK2cqeyXkRAivMAKCtCABEpjAi15z9AYutHtf9fa68jgCgwXoO +oouSKa5K3JCI/14pRawvDIg= +=pUX8 +-----END PGP SIGNATURE----- diff --git a/x11-misc/xwit/files/malloc.patch b/x11-misc/xwit/files/malloc.patch new file mode 100644 index 000000000000..41c3a7b82eff --- /dev/null +++ b/x11-misc/xwit/files/malloc.patch @@ -0,0 +1,11 @@ +--- dsimple.c_ 2005-06-05 16:07:10.000000000 +0200 ++++ dsimple.c 2005-06-05 16:07:47.000000000 +0200 +@@ -46,7 +46,7 @@ + char *Malloc(size) + unsigned size; + { +- char *data, *malloc(); ++ char *data; //, *malloc(); + + if (!(data = malloc(size))) + Fatal_Error("Out of memory!"); diff --git a/x11-misc/xwit/xwit-3.4.ebuild b/x11-misc/xwit/xwit-3.4.ebuild index 5bbab688adf8..8b38cc48d8ea 100644 --- a/x11-misc/xwit/xwit-3.4.ebuild +++ b/x11-misc/xwit/xwit-3.4.ebuild @@ -1,6 +1,8 @@ -# 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-misc/xwit/xwit-3.4.ebuild,v 1.3 2004/06/24 22:46:44 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xwit/xwit-3.4.ebuild,v 1.4 2005/06/05 14:18:13 pyrania Exp $ + +inherit eutils IUSE="" @@ -15,6 +17,8 @@ KEYWORDS="x86" DEPEND="virtual/x11" src_compile() { + epatch ${FILESDIR}/malloc.patch + xmkmf || die "xmkmf failed" emake || die "Make failed" } |