diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-22 02:40:12 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-22 02:40:12 +0000 |
commit | 0b88a5b8260b308cf5c832cb82b9818426f2a478 (patch) | |
tree | f86e3009291c2f1ae4e70e60932383dff6f49524 /packages/ncurses/ncurses_5.3.bb | |
parent | 43a0bb6a6f83642fb31a9cb27d6ece5f79452c9d (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/01/21 20:56:14-05:00 handhelds.org!kergoth
Add sed 4.1.2.
2005/01/21 20:53:36-05:00 handhelds.org!kergoth
ncurses: Create libtermcap symlinks, consolidate metadata into a .inc.
2005/01/21 20:48:18-05:00 handhelds.org!kergoth
Merge oe-devel@oe-devel.bkbits.net:openembedded
into handhelds.org:/home/kergoth/code/openembedded
2005/01/21 20:48:08-05:00 handhelds.org!kergoth
Add zile, a very small emacs-like editor.
BKrev: 41f1bd0c7KKgxL0NpckmwXVKlGyleg
Diffstat (limited to 'packages/ncurses/ncurses_5.3.bb')
-rw-r--r-- | packages/ncurses/ncurses_5.3.bb | 54 |
1 files changed, 2 insertions, 52 deletions
diff --git a/packages/ncurses/ncurses_5.3.bb b/packages/ncurses/ncurses_5.3.bb index 9e72551297..fb56af9723 100644 --- a/packages/ncurses/ncurses_5.3.bb +++ b/packages/ncurses/ncurses_5.3.bb @@ -1,61 +1,11 @@ BaseV := "${PV}" SnapV := "20030906" PV = "${BaseV}.${SnapV}" -LICENSE = "MIT" -DESCRIPTION = "Ncurses library" -SECTION = "libs" -DEPENDS = "ncurses-native" -PROVIDES = "${PV}-${BaseV} ${PV}-${BaseV}-${PR} \ - ${CATEGORY}/${PN}-${BaseV} ${CATEGORY}/${PN}-${BaseV}-${PR} " -PACKAGES_append = " ncurses-terminfo" -FILES_ncurses_append = " ${datadir}/tabset" -FILES_ncurses-terminfo = "${datadir}/terminfo" +PR = "r1" SRC_URI = "${GNU_MIRROR}/ncurses/ncurses-${BaseV}.tar.gz \ file://${SnapV}.patch;patch=1 \ file://configure.patch;patch=1" S = "${WORKDIR}/ncurses-${BaseV}" -inherit autotools - -EXTRA_OECONF = "--with-shared \ - --without-profile \ - --without-debug \ - --disable-rpath \ - --enable-echo \ - --enable-const \ - --without-ada \ - --enable-termcap \ - --without-cxx-binding \ - --with-terminfo-dirs=${sysconfdir}/terminfo:${datadir}/terminfo \ - --enable-overwrite" -export BUILD_CCFLAGS = "-I${S}/ncurses -I${S}/include ${BUILD_CFLAGS}" -export BUILD_LDFLAGS = "" - -do_configure_prepend () { - if [ -e aclocal.m4 -a ! -e acinclude.m4 ]; then - cat aclocal.m4 > acinclude.m4 - fi -} - -do_configure () { -# override this function to avoid the autoconf/automake/aclocal/autoheader -# calls for now - gnu-configize - oe_runconf -} - -do_compile () { - oe_runmake BUILD_LDFLAGS="" 'BUILD_CCFLAGS=${BUILD_CCFLAGS}' -} - -do_stage () { - for h in ncurses_*.h curses.h eti.h form.h menu.h panel.h \ - termcap.h term.h unctrl.h; do - install -m 0644 include/$h ${STAGING_INCDIR}/ - done - ln -sf curses.h ${STAGING_INCDIR}/ncurses.h - for i in ncurses panel form menu; do - oe_libinstall -so -C lib $i ${STAGING_LIBDIR} - done -} +include ncurses.inc |