From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- core/ncurses/PKGBUILD | 73 +++++++++++++++++++++++++++++++++++++ core/ncurses/set_field_buffer.patch | 9 +++++ 2 files changed, 82 insertions(+) create mode 100644 core/ncurses/PKGBUILD create mode 100644 core/ncurses/set_field_buffer.patch (limited to 'core/ncurses') diff --git a/core/ncurses/PKGBUILD b/core/ncurses/PKGBUILD new file mode 100644 index 000000000..abe1cede5 --- /dev/null +++ b/core/ncurses/PKGBUILD @@ -0,0 +1,73 @@ +# $Id: PKGBUILD 111464 2011-02-27 00:26:17Z allan $ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=ncurses +pkgver=5.8 +pkgrel=1 +pkgdesc="System V Release 4.0 curses emulation library" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/ncurses/" +license=('MIT') +depends=('glibc') +source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('20ed3fa7599937f0ca268d9088837a64') + +build() { + cd ${srcdir}/ + mkdir ncurses{,w}-build + + cd ${srcdir}/ncursesw-build + ../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ + --with-shared --with-normal --without-debug --without-ada \ + --with-install-prefix=${pkgdir} --enable-widec + # add --enable-ext-colors with next soname bump + make + + # libncurses.so.5 for external binary support + cd ${srcdir}/ncurses-build + [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" + ../${pkgname}-${pkgver}/configure --prefix=/usr \ + --with-shared --with-normal --without-debug --without-ada \ + --with-install-prefix=${pkgdir} $CONFIGFLAG + make +} + +package() { + cd ${srcdir}/ncursesw-build + make install + + # move libraries needed for boot to /lib (we call tput in initscripts) + install -dm755 ${pkgdir}/lib + mv ${pkgdir}/usr/lib/libncursesw.so.5* ${pkgdir}/lib + ln -sf ../../lib/libncursesw.so.5 ${pkgdir}/usr/lib/libncursesw.so + + # Fool packages looking to link to non-wide-character ncurses libraries + for lib in curses ncurses form panel menu; do + rm -f ${pkgdir}/usr/lib/lib${lib}.so + echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so + ln -sf lib${lib}w.a ${pkgdir}/usr/lib/lib${lib}.a + done + ln -sf libncurses++w.a ${pkgdir}/usr/lib/libncurses++.a + + # install tput to /bin + install -dm755 ${pkgdir}/bin/ + mv ${pkgdir}/usr/bin/tput ${pkgdir}/bin/tput + + # Some packages look for -lcurses during build + rm -f ${pkgdir}/usr/lib/libcursesw.so + echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib/libcursesw.so + ln -sf libncurses.so ${pkgdir}/usr/lib/libcurses.so + ln -sf libncursesw.a ${pkgdir}/usr/lib/libcursesw.a + ln -sf libncurses.a ${pkgdir}/usr/lib/libcurses.a + + # non-widec compatibility library + cd ${srcdir}/ncurses-build + install -Dm755 lib/libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.${pkgver} + ln -sf libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.5 + + # install license, rip it from the readme + cd ${srcdir}/${pkgname}-${pkgver} + install -dm755 ${pkgdir}/usr/share/licenses/$pkgname + grep -B 100 '$Id' README > ${pkgdir}/usr/share/licenses/${pkgname}/license.txt +} diff --git a/core/ncurses/set_field_buffer.patch b/core/ncurses/set_field_buffer.patch new file mode 100644 index 000000000..a2132043e --- /dev/null +++ b/core/ncurses/set_field_buffer.patch @@ -0,0 +1,9 @@ +--- src/ncurses-5.7/form/frm_driver.c 2008/10/18 16:25:00 1.88 ++++ src/ncurses-5.7/form/frm_driver.c 2008/12/06 23:08:12 +@@ -4366,6 +4366,7 @@ + delwin(field->working); + field->working = newpad(field->drows, field->dcols); + } ++ len = Buffer_Length(field); + wclear(field->working); + mvwaddstr(field->working, 0, 0, value); -- cgit v1.2.3-54-g00ecf