diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-07-05 18:46:50 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-07-05 18:46:50 +0000 |
commit | 243fa5565b53a0e0bea38a74b96a44085a9ef41a (patch) | |
tree | 2c10bd6f503ba9fc04a187d339882b7b724e810f /eclass/freebsd.eclass | |
parent | Disable doc building when user didn't request it (bug #368195 by Valentin Dav... (diff) | |
download | gentoo-2-243fa5565b53a0e0bea38a74b96a44085a9ef41a.tar.gz gentoo-2-243fa5565b53a0e0bea38a74b96a44085a9ef41a.tar.bz2 gentoo-2-243fa5565b53a0e0bea38a74b96a44085a9ef41a.zip |
rename libcursesw to libncursesw too
Diffstat (limited to 'eclass/freebsd.eclass')
-rw-r--r-- | eclass/freebsd.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/freebsd.eclass b/eclass/freebsd.eclass index 78e7a1d94b83..4d11d137292a 100644 --- a/eclass/freebsd.eclass +++ b/eclass/freebsd.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/freebsd.eclass,v 1.15 2010/03/11 17:55:55 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/freebsd.eclass,v 1.16 2011/07/05 18:46:50 aballier Exp $ # # Diego Pettenò <flameeyes@gentoo.org> @@ -78,6 +78,9 @@ freebsd_rename_libraries() { # flex provides libfl, not libl find "${S}" -name Makefile -print0 | xargs -0 \ sed -i -e 's:-ll:-lfl:g; s:{LIBL}:{LIBFL}:g' + # ncurses provides libncursesw not libcursesw + find "${S}" -name Makefile -print0 | xargs -0 \ + sed -i -e 's:-lcursesw:-lncursesw:g' eend $? } |