diff options
author | Jonathan Smith <smithj@gentoo.org> | 2005-06-14 14:44:11 +0000 |
---|---|---|
committer | Jonathan Smith <smithj@gentoo.org> | 2005-06-14 14:44:11 +0000 |
commit | 3eb92655b0523b67699c76efe324998418a8c0fa (patch) | |
tree | 0b3418d358d8f538a4fcd2d25653f7884b3ce0c2 /x11-misc/xfm | |
parent | fixed metadata.xml to have the correct herd (diff) | |
download | gentoo-2-3eb92655b0523b67699c76efe324998418a8c0fa.tar.gz gentoo-2-3eb92655b0523b67699c76efe324998418a8c0fa.tar.bz2 gentoo-2-3eb92655b0523b67699c76efe324998418a8c0fa.zip |
fixed malloc problem in 1.4.3 for #66133
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'x11-misc/xfm')
-rw-r--r-- | x11-misc/xfm/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xfm/files/xfm-1.4.3-malloc.patch | 12 | ||||
-rw-r--r-- | x11-misc/xfm/xfm-1.4.3.ebuild | 9 |
3 files changed, 25 insertions, 4 deletions
diff --git a/x11-misc/xfm/ChangeLog b/x11-misc/xfm/ChangeLog index 7066cd38b063..d9b0c9aae517 100644 --- a/x11-misc/xfm/ChangeLog +++ b/x11-misc/xfm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/xfm -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfm/ChangeLog,v 1.4 2004/06/24 22:40:48 agriffis Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfm/ChangeLog,v 1.5 2005/06/14 14:44:11 smithj Exp $ + + 14 Jun 2005; Jonathan Smith <smithj@gentoo.org> + +files/xfm-1.4.3-malloc.patch, xfm-1.4.3.ebuild: + fixed malloc problem in 1.4.3 for #66133 11 May 2004; Michael Sterrett <mr_bones_@gentoo.org> xfm-1.4.3.ebuild: fix typo: REAEDME/README (bug #50774) diff --git a/x11-misc/xfm/files/xfm-1.4.3-malloc.patch b/x11-misc/xfm/files/xfm-1.4.3-malloc.patch new file mode 100644 index 000000000000..00607185f1b9 --- /dev/null +++ b/x11-misc/xfm/files/xfm-1.4.3-malloc.patch @@ -0,0 +1,12 @@ +diff -Nru --exclude=Makefile xfm-1.4.3.original/regexp/regexp.c xfm-1.4.3/regexp/regexp.c +--- xfm-1.4.3.original/regexp/regexp.c 2005-05-07 17:36:22.000000000 +0200 ++++ xfm-1.4.3/regexp/regexp.c 2005-05-07 17:37:59.000000000 +0200 +@@ -195,7 +195,7 @@ + register char *longest; + register int len; + int flags; +- extern char *malloc(); ++ /* extern char *malloc(); */ + + if (exp == NULL) + FAIL("NULL argument"); diff --git a/x11-misc/xfm/xfm-1.4.3.ebuild b/x11-misc/xfm/xfm-1.4.3.ebuild index c0fd8690bbd1..dd1edade1162 100644 --- a/x11-misc/xfm/xfm-1.4.3.ebuild +++ b/x11-misc/xfm/xfm-1.4.3.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-misc/xfm/xfm-1.4.3.ebuild,v 1.3 2004/06/24 22:40:48 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfm/xfm-1.4.3.ebuild,v 1.4 2005/06/14 14:44:11 smithj Exp $ DESCRIPTION="A classic X11 file manager" HOMEPAGE="http://www.musikwissenschaft.uni-mainz.de/~ag/xfm/" @@ -16,6 +16,11 @@ RDEPEND="virtual/x11 DEPEND="${RDEPEND} >=sys-apps/sed-4" +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}-malloc.patch +} + src_compile() { sed -i \ -e 's:$(DESTDIR)$(BINDIR):$(BINDIR):g' \ |