upgpkg: 5.6-7
parent
6e15b6df86
commit
caa9e772d1
@ -1,74 +1,60 @@
|
|||||||
# Maintainer: judd <jvinet@zeroflux.org>
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
||||||
|
# Contributor: judd <jvinet@zeroflux.org>
|
||||||
|
|
||||||
pkgname=ncurses
|
pkgname=ncurses
|
||||||
pkgver=5.6
|
pkgver=5.6
|
||||||
pkgrel=6
|
pkgrel=7
|
||||||
pkgdesc="A System V Release 4.0 curses emulation library"
|
pkgdesc="A System V Release 4.0 curses emulation library"
|
||||||
arch=(i686 x86_64)
|
arch=('i686' 'x86_64')
|
||||||
url="http://www.gnu.org/software/ncurses/ncurses.html"
|
url="http://www.gnu.org/software/ncurses/ncurses.html"
|
||||||
license=('MIT')
|
license=('MIT')
|
||||||
groups=('base')
|
groups=('base')
|
||||||
depends=('glibc')
|
depends=('glibc')
|
||||||
source=(ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
|
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz
|
||||||
md5sums=('b6593abe1089d6aab1551c105c9300e3')
|
ftp://invisible-island.net/ncurses/${pkgver}/${pkgname}-${pkgver}-coverity.patch.gz)
|
||||||
|
md5sums=('b6593abe1089d6aab1551c105c9300e3'
|
||||||
|
'27607b10fef869740cbcc408d86695b1')
|
||||||
options=(!makeflags)
|
options=(!makeflags)
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $startdir/src/$pkgname-$pkgver
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||||||
|
patch -Np1 -i ${srcdir}/${pkgname}-${pkgver}-coverity.patch
|
||||||
|
|
||||||
# The chtype/mmask-t settings below are to retain ABI compat
|
./configure --prefix=/usr --mandir=/usr/share/man \
|
||||||
# with ncurses-5.4 so dont change em !
|
|
||||||
# we should test in next update if we can drop it.
|
|
||||||
if [ "$CARCH" == "x86_64" ]; then
|
|
||||||
./configure --prefix=/usr \
|
|
||||||
--with-shared --with-normal --without-debug --without-ada \
|
|
||||||
--with-install-prefix=$startdir/pkg \
|
|
||||||
--with-chtype='long' --with-mmask-t='long'
|
|
||||||
else
|
|
||||||
./configure --prefix=/usr \
|
|
||||||
--with-shared --with-normal --without-debug --without-ada \
|
--with-shared --with-normal --without-debug --without-ada \
|
||||||
--with-install-prefix=$startdir/pkg
|
--with-install-prefix=${pkgdir} --enable-widec
|
||||||
fi
|
|
||||||
make || return 1
|
make || return 1
|
||||||
make install
|
make install
|
||||||
mkdir -p $startdir/pkg/lib
|
|
||||||
cd $startdir/pkg/usr/lib
|
|
||||||
mv libncurses.so.$pkgver ../../lib
|
|
||||||
ln -sf ../../lib/libncurses.so.$pkgver libncurses.so.$pkgver
|
|
||||||
cd $startdir/pkg/lib
|
|
||||||
ln -sf libncurses.so.$pkgver libncurses.so.5
|
|
||||||
rm -f $startdir/pkg/lib/libcurses.so
|
|
||||||
|
|
||||||
# build unicode support libs
|
# fix library permissions
|
||||||
cd $startdir/src/$pkgname-$pkgver
|
chmod 644 ${pkgdir}/usr/lib/libncurses++w.a
|
||||||
make clean
|
|
||||||
if [ "$CARCH" == "x86_64" ]; then
|
# move libraries needed for boot to /lib (we call tput in initscripts)
|
||||||
./configure --prefix=/usr \
|
mkdir -p ${pkgdir}/lib
|
||||||
--with-shared --with-normal --without-debug --without-ada \
|
mv ${pkgdir}/usr/lib/libncursesw.so.5* ${pkgdir}/lib
|
||||||
--with-install-prefix=$startdir/pkg --enable-widec \
|
ln -sf ../../lib/libncursesw.so.5 ${pkgdir}/usr/lib/libncursesw.so
|
||||||
--with-chtype='long' --with-mmask-t='long'
|
|
||||||
else
|
# Fool packages looking to link to non-wide-character ncurses libraries
|
||||||
./configure --prefix=/usr \
|
for lib in curses ncurses form panel menu ; do \
|
||||||
--with-shared --with-normal --without-debug --without-ada \
|
rm -f ${pkgdir}/usr/lib/lib${lib}.so ; \
|
||||||
--with-install-prefix=$startdir/pkg --enable-widec
|
echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so ; \
|
||||||
fi
|
ln -sf lib${lib}w.a ${pkgdir}/usr/lib/lib${lib}.a ; \
|
||||||
make || return 1
|
done
|
||||||
make install
|
ln -sf libncurses++w.a ${pkgdir}/usr/lib/libncurses++.a
|
||||||
|
|
||||||
mkdir $startdir/pkg/usr/include/ncursesw
|
|
||||||
ln -sf /usr/include/ncurses.h $startdir/pkg/usr/include/ncursesw
|
|
||||||
# fix library for tput, we call it in initscripts!
|
|
||||||
cd $startdir/pkg/usr/lib
|
|
||||||
mv libncursesw.so.$pkgver ../../lib
|
|
||||||
ln -sf ../../lib/libncursesw.so.$pkgver libncursesw.so.$pkgver
|
|
||||||
cd $startdir/pkg/lib
|
|
||||||
ln -sf libncursesw.so.$pkgver libncursesw.so.5
|
|
||||||
|
|
||||||
# install tput to /bin
|
# install tput to /bin
|
||||||
mkdir $startdir/pkg/bin/
|
mkdir ${pkgdir}/bin/
|
||||||
mv $startdir/pkg/usr/bin/tput $startdir/pkg/bin/tput
|
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
|
||||||
|
|
||||||
# install license, rip it from the readme
|
# install license, rip it from the readme
|
||||||
cd $startdir/src/$pkgname-$pkgver
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||||||
mkdir -p $startdir/pkg/usr/share/licenses/$pkgname
|
mkdir -p ${pkgdir}/usr/share/licenses/$pkgname
|
||||||
grep -B 100 '$Id' README > $startdir/pkg/usr/share/licenses/$pkgname/license.txt
|
grep -B 100 '$Id' README > ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue