diff options
author | Michael Nazaroff <naz@gentoo.org> | 2002-08-29 20:18:52 +0000 |
---|---|---|
committer | Michael Nazaroff <naz@gentoo.org> | 2002-08-29 20:18:52 +0000 |
commit | 39ca871a05721f76f8ba3001680f1dcd3d34935c (patch) | |
tree | 5fe6f077cef077eaa00bb38e366291babbb4eb48 /app-editors/nedit | |
parent | Enabling the sparc64-1.0 profile to use the latest Portage. It was really nec... (diff) | |
download | gentoo-2-39ca871a05721f76f8ba3001680f1dcd3d34935c.tar.gz gentoo-2-39ca871a05721f76f8ba3001680f1dcd3d34935c.tar.bz2 gentoo-2-39ca871a05721f76f8ba3001680f1dcd3d34935c.zip |
Small fix to nedit so it compiles on some peoples machines
Diffstat (limited to 'app-editors/nedit')
-rw-r--r-- | app-editors/nedit/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/nedit/nedit-5.3.ebuild | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/app-editors/nedit/ChangeLog b/app-editors/nedit/ChangeLog index 8357fd420456..90f2eea6c4f6 100644 --- a/app-editors/nedit/ChangeLog +++ b/app-editors/nedit/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for app-editors/nedit # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/ChangeLog,v 1.3 2002/08/06 16:32:07 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/ChangeLog,v 1.4 2002/08/29 20:18:52 naz Exp $ *nedit-5.3 (13 Jul 2002) + 29 Aug 2002; Michael Nazaroff <naz@gentoo.org> : nedit-5.3.ebuild + Added in -lXmu to a Makefile so it compiles on everyone's machine, since it + failed to build on my machine and one other persons. + 06 Aug 2002; Mark Guertin <gerk@gentoo.org> : Added ppc to keywords diff --git a/app-editors/nedit/nedit-5.3.ebuild b/app-editors/nedit/nedit-5.3.ebuild index 2ddaed4cb55d..14db49e0dfc8 100644 --- a/app-editors/nedit/nedit-5.3.ebuild +++ b/app-editors/nedit/nedit-5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.3.ebuild,v 1.4 2002/08/14 18:36:03 murphy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.3.ebuild,v 1.5 2002/08/29 20:18:52 naz Exp $ S=${WORKDIR}/${P} MY_PV=${PV/./_} @@ -22,7 +22,8 @@ src_unpack() { unpack ${A} cd ${S}/makefiles cp Makefile.linux Makefile.orig - sed -e "s:-O:${CFLAGS}:" Makefile.orig > Makefile.linux + sed -e "s:-O:${CFLAGS}:" -e "s/-lm/-lm -lXmu/" \ + Makefile.orig > Makefile.linux || die } |