summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2011-07-05 18:46:50 +0000
committerAlexis Ballier <aballier@gentoo.org>2011-07-05 18:46:50 +0000
commit9c9f73fd0365b7ff0f5caa9d436d988ecdc05440 (patch)
tree6131355d819f20224cbd24a5dd0165c82f27db12 /eclass/freebsd.eclass
parentDisable doc building when user didn't request it (bug #368195 by Valentin Dav... (diff)
downloadhistorical-9c9f73fd0365b7ff0f5caa9d436d988ecdc05440.tar.gz
historical-9c9f73fd0365b7ff0f5caa9d436d988ecdc05440.tar.bz2
historical-9c9f73fd0365b7ff0f5caa9d436d988ecdc05440.zip
rename libcursesw to libncursesw too
Diffstat (limited to 'eclass/freebsd.eclass')
-rw-r--r--eclass/freebsd.eclass5
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 $?
}