From: Koen Kooi Date: Sun, 28 Mar 2010 10:12:51 +0000 (+0200) Subject: ncurses: convert to new-style staging X-Git-Tag: Release-2010-05/1~206 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6deff76b8df5b764066e427a889a14e4729a93c1;p=openembedded.git ncurses: convert to new-style staging --- diff --git a/recipes/ncurses/ncurses.inc b/recipes/ncurses/ncurses.inc index 344c82072f..bfecfff1bb 100644 --- a/recipes/ncurses/ncurses.inc +++ b/recipes/ncurses/ncurses.inc @@ -30,13 +30,6 @@ export BUILD_CCFLAGS = "-I${S}/ncurses -I${S}/include ${BUILD_CFLAGS}" export BUILD_LDFLAGS = "" export EXTRA_OEMAKE = '"BUILD_LDFLAGS=" "BUILD_CCFLAGS=${BUILD_CCFLAGS}"' -do_stage() { - autotools_stage_all - ln -sf curses.h ${STAGING_INCDIR}/ncurses.h - ln -sf libncurses.so ${STAGING_LIBDIR}/libtermcap.so - ln -sf libncurses.a ${STAGING_LIBDIR}/libtermcap.a -} - # This is necessary so that the "tic" command executed during the install can # link with the correct libary in staging. export LD_LIBRARY_PATH = "${STAGING_LIBDIR_NATIVE}" @@ -47,6 +40,8 @@ do_install() { # our ncurses has termcap support ln -sf libncurses.so ${D}${libdir}/libtermcap.so ln -sf libncurses.a ${D}${libdir}/libtermcap.a + ln -sf curses.h ${D}${includedir}/ncurses.h + # include some basic terminfo files # stolen ;) from gentoo and modified a bit