From 5886e4c063e51429f39b2242893819bf4af1f72b Mon Sep 17 00:00:00 2001 From: Cyril Brulebois Date: Sat, 29 Mar 2008 18:42:05 +0100 Subject: [PATCH] Added wide character support. * Build-depend on libncursesw5-dev instead of libncurses5-dev. * Pass "LDLIBS=-lncursesw" to make, overriding the default "-lcurses". Again, slightly adopted Cyril's changelog entry to my own preferences. -tokkee --- debian/changelog | 6 +++++- debian/control | 2 +- debian/rules | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 3c29b50..5a4d82c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,10 +5,14 @@ tig (0.10.1-1) unstable; urgency=low - Added versioned build dependency on dpkg-dev (>= 1.14.6). * Improved package description as suggested by Adeodato Simó (Closes: #469290). + * Added wide character support, thanks to Cyril Brulebois for the patch + (Closes: #457068): + - Build-depend on libncursesw5-dev instead of libncurses5-dev. + - Pass "LDLIBS=-lncursesw" to make, overriding the default "-lcurses". * Fixed a typo in debian/rules, preventing CFLAGS from being used, thanks to Cyril Brulebois for the patch. - -- Sebastian Harl Sat, 29 Mar 2008 18:21:49 +0100 + -- Sebastian Harl Sat, 29 Mar 2008 18:32:04 +0100 tig (0.9.1-1) unstable; urgency=low diff --git a/debian/control b/debian/control index 4dc0ccc..4351bc4 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: tig Section: utils Priority: optional Maintainer: Sebastian Harl -Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.14.6), libncurses5-dev, asciidoc (>= 7), xmlto, docbook-utils +Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.14.6), libncursesw5-dev, asciidoc (>= 7), xmlto, docbook-utils Standards-Version: 3.7.2 Homepage: http://jonas.nitro.dk/tig/ XS-Vcs-Git: git://git.tokkee.org/pkg-tig.git diff --git a/debian/rules b/debian/rules index 962b559..d9603aa 100755 --- a/debian/rules +++ b/debian/rules @@ -19,7 +19,7 @@ build: build-stamp build-stamp: dh_testdir - CFLAGS="$(CFLAGS)" $(MAKE) all doc + CFLAGS="$(CFLAGS)" $(MAKE) all doc LDLIBS=-lncursesw touch build-stamp -- 2.30.2