From ca92f9e72779c5defebeb3f984f82ea288df73f1 Mon Sep 17 00:00:00 2001 From: Markham Date: Sat, 30 Jan 2016 15:29:26 +0100 Subject: [PATCH] bump version ncurses-6.0; bump version giflib-5.1.2 --- make/archives.mk | 4 ++-- make/libraries.mk | 27 +++++++++++++++++++-------- make/versions.mk | 5 ++++- 3 files changed, 25 insertions(+), 11 deletions(-) diff --git a/make/archives.mk b/make/archives.mk index ffbbc33..b39f8e0 100755 --- a/make/archives.mk +++ b/make/archives.mk @@ -54,8 +54,8 @@ $(ARCHIVE)/libogg-1.3.1.tar.gz: $(ARCHIVE)/libvorbis-1.3.2.tar.bz2: $(WGET) http://www.fhloston-paradise.de/libvorbis-1.3.2.tar.bz2 -$(ARCHIVE)/ncurses-5.9.tar.gz: - $(WGET) http://www.fhloston-paradise.de/ncurses-5.9.tar.gz +$(ARCHIVE)/ncurses-$(NCURSES_VER).tar.gz: + $(WGET) http://ftp.gnu.org/pub/gnu/ncurses/ncurses-$(NCURSES_VER).tar.gz $(ARCHIVE)/libvorbisidec_1.0.2+svn14261.orig.tar.gz: $(WGET) http://www.fhloston-paradise.de/libvorbisidec_1.0.2+svn14261.orig.tar.gz diff --git a/make/libraries.mk b/make/libraries.mk index 36b64fa..f23bc63 100755 --- a/make/libraries.mk +++ b/make/libraries.mk @@ -12,18 +12,29 @@ ncurses-prereq: false; \ fi -$(D)/libncurses: $(ARCHIVE)/ncurses-5.9.tar.gz | ncurses-prereq $(TARGETPREFIX) - $(UNTAR)/ncurses-5.9.tar.gz && \ - pushd $(BUILD_TMP)/ncurses-5.9 && \ - $(CONFIGURE) --build=$(BUILD) --host=$(TARGET) --target=$(TARGET) \ - --prefix= --with-terminfo-dirs=/usr/share/terminfo \ - --disable-big-core --without-debug --without-progs --without-ada --with-shared \ - --without-profile --disable-rpath --without-cxx-binding \ +$(D)/libncurses: $(ARCHIVE)/ncurses-$(NCURSES_VER).tar.gz | ncurses-prereq $(TARGETPREFIX) + $(UNTAR)/ncurses-$(NCURSES_VER).tar.gz && \ + pushd $(BUILD_TMP)/ncurses-$(NCURSES_VER) && \ + $(CONFIGURE) \ + --build=$(BUILD) \ + --host=$(TARGET) \ + --target=$(TARGET) \ + --prefix= \ + --without-manpages \ + --with-terminfo-dirs=/usr/share/terminfo \ + --disable-big-core \ + --without-debug \ + --without-progs \ + --without-ada \ + --with-shared \ + --without-profile \ + --disable-rpath \ + --without-cxx-binding \ --with-fallbacks='linux vt100 xterm' && \ $(MAKE) libs HOSTCC=gcc HOSTLDFLAGS="$(TARGET_LDFLAGS)" \ HOSTCCFLAGS="$(TARGET_CFLAGS) -DHAVE_CONFIG_H -I../ncurses -DNDEBUG -D_GNU_SOURCE -I../include" && \ $(MAKE) install.libs DESTDIR=$(TARGETPREFIX) - $(REMOVE)/ncurses-5.9 + $(REMOVE)/ncurses-$(NCURSES_VER) touch $@ $(D)/libblkid: $(D)/libuuid diff --git a/make/versions.mk b/make/versions.mk index 3b05340..b9c92c1 100644 --- a/make/versions.mk +++ b/make/versions.mk @@ -1,6 +1,6 @@ # giflib: converting images replaces libungif -GIFLIB_VER=5.1.1 +GIFLIB_VER=5.1.2 # curl; command line tool for transferring data with URL syntax CURL_VER = 7.46.0 @@ -41,6 +41,9 @@ LUA_EXPAT_VER = 1.2.0 # mtd-utils for the host... MTD_UTILS_VER = 1.5.2 +# ncurses; software for controlling writing to the console screen +NCURSES_VER=6.0 + # ntfs-3g; file system driver for the NTFS file system, enabling read/write support of NTFS file systems NTFS_3G_VER=2015.3.14 -- 2.39.5