diff options
author | 2002-08-29 20:18:52 +0000 | |
---|---|---|
committer | 2002-08-29 20:18:52 +0000 | |
commit | 570056e27ac24b3c65e282a4bc186142999c7b02 (patch) | |
tree | 8791700059064936d069aeae3bc54808cf820229 /app-editors/nedit/nedit-5.3.ebuild | |
parent | Enabling the sparc64-1.0 profile to use the latest Portage. It was really nec... (diff) | |
download | historical-570056e27ac24b3c65e282a4bc186142999c7b02.tar.gz historical-570056e27ac24b3c65e282a4bc186142999c7b02.tar.bz2 historical-570056e27ac24b3c65e282a4bc186142999c7b02.zip |
Small fix to nedit so it compiles on some peoples machines
Diffstat (limited to 'app-editors/nedit/nedit-5.3.ebuild')
-rw-r--r-- | app-editors/nedit/nedit-5.3.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
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 } |