ncurses: convert to new-style staging
authorKoen Kooi <koen@openembedded.org>
Sun, 28 Mar 2010 10:12:51 +0000 (12:12 +0200)
committerKoen Kooi <koen@openembedded.org>
Sun, 28 Mar 2010 10:12:51 +0000 (12:12 +0200)
recipes/ncurses/ncurses.inc

index 344c820..bfecfff 100644 (file)
@@ -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