Code

Added wide character support.
authorCyril Brulebois <cyril.brulebois@enst-bretagne.fr>
Sat, 29 Mar 2008 17:42:05 +0000 (18:42 +0100)
committerSebastian Harl <sh@tokkee.org>
Sun, 30 Mar 2008 11:09:53 +0000 (13:09 +0200)
* 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
debian/control
debian/rules

index 3c29b503617d7a171c4c7d60bd498c87772e29e1..5a4d82c33348d78a14d99f947a2f076c52232cd1 100644 (file)
@@ -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 <sh@tokkee.org>  Sat, 29 Mar 2008 18:21:49 +0100
+ -- Sebastian Harl <sh@tokkee.org>  Sat, 29 Mar 2008 18:32:04 +0100
 
 tig (0.9.1-1) unstable; urgency=low
 
index 4dc0cccb2c0f92ad5937cf31e78a8fbb629cec1d..4351bc4d40cb716a533f209ccfc50b5f9b4a1688 100644 (file)
@@ -2,7 +2,7 @@ Source: tig
 Section: utils
 Priority: optional
 Maintainer: Sebastian Harl <sh@tokkee.org>
-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
index 962b55975a01ffb146d469af358be0e11175e598..d9603aa5936369a84e11b50180a9eee9abcf5397 100755 (executable)
@@ -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