~ubuntu-branches/ubuntu/vivid/fweb/vivid

« back to all changes in this revision

Viewing changes to debian/patches/02-Web--configure.patch

  • Committer: Package Import Robot
  • Author(s): Jari Aalto
  • Date: 2011-11-18 21:05:43 UTC
  • Revision ID: package-import@ubuntu.com-20111118210543-i4gn84g98pi86war
Tags: 1.62-11.1
* Non-maintainer upload.
  - Move to packaging format "3.0 (quilt)".
* debian/compat
  - Update to 8.
* debian/control
  - (Build-Depends): update to debhelper 8.
  - (Description): Adjust first line (lintian).
  - (Homepage): Add.
  - (Recommends): Change to tetex-base to texlive (Closes: #601268).
  - (Standards-Version): Update to 3.9.2.
  - (Suggests): Remove tetex-base.
  Package fweb-doc
  - (Description): Extend first line (Lintian).
  - (Depends): Add ${misc:Depends}, add dpkg (>= 1.15.4) | install-info
  - (Section): Add doc.
* debian/copyright
  - Remove obsolete FSF address. Correct GPL path.
* debian/idxmerge.1
  - Fix hyphen-used-as-minus-sign (Lintian).
* debian/patches
  - New. Convert embedded changes to upstream code into individual patches.
* debian/rules
  - Replace obsolete dh_clean with dh_prep
  - (build-arch, build-indep): New (W: Lintian).
  - (clean): Adjust make call Web/Makefile (Lintian).
    Delete generated files: Web/fweave.mds Web/fweave.ndx
  - (docdir): Install docs to $package-doc.
  - (infodir): New variable.
  - (install): Don't create directory doc-base (lintian).
    Don't create empty info dir (Lintian).
  - (tmpdir): Install to $package, not tmp dir thus no longer needing
    dh_movefiles.
* debian/source/format
  - New file.
* fweb-doc.doc-base
  - (Section): Update from Apps/Programming to Programming.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From 202d6b44a9c648d68fd8a99155ff8babbe679ed3 Mon Sep 17 00:00:00 2001
 
2
From: Jari Aalto <jari.aalto@cante.net>
 
3
Date: Fri, 18 Nov 2011 15:29:34 +0200
 
4
Subject: [PATCH] Web/configure: use -lncurses
 
5
Organization: Private
 
6
Content-Type: text/plain; charset="utf-8"
 
7
Content-Transfer-Encoding: 8bit
 
8
 
 
9
Signed-off-by: Jari Aalto <jari.aalto@cante.net>
 
10
---
 
11
 Web/configure |    8 ++++----
 
12
 1 files changed, 4 insertions(+), 4 deletions(-)
 
13
 
 
14
diff --git a/Web/configure b/Web/configure
 
15
index a0105ca..f7ad0cd 100755
 
16
--- a/Web/configure
 
17
+++ b/Web/configure
 
18
@@ -1589,14 +1589,14 @@ cat >> confdefs.h <<\EOF
 
19
 EOF
 
20
 
 
21
 fi
 
22
-echo $ac_n "checking for tputs in -ltermcap""... $ac_c" 1>&6
 
23
-echo "configure:1594: checking for tputs in -ltermcap" >&5
 
24
+echo $ac_n "checking for tputs in -lncurses""... $ac_c" 1>&6
 
25
+echo "configure:1594: checking for tputs in -lncurses" >&5
 
26
 ac_lib_var=`echo termcap'_'tputs | sed 'y%./+-%__p_%'`
 
27
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
 
28
   echo $ac_n "(cached) $ac_c" 1>&6
 
29
 else
 
30
   ac_save_LIBS="$LIBS"
 
31
-LIBS="-ltermcap  $LIBS"
 
32
+LIBS="-lncurses  $LIBS"
 
33
 cat > conftest.$ac_ext <<EOF
 
34
 #line 1602 "configure"
 
35
 #include "confdefs.h"
 
36
@@ -1625,7 +1625,7 @@ fi
 
37
 if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
 
38
   echo "$ac_t""yes" 1>&6
 
39
   TERMCAP0=
 
40
-LIBS="$LIBS -ltermcap"
 
41
+LIBS="$LIBS -lncurses"
 
42
 else
 
43
   echo "$ac_t""no" 1>&6
 
44
 TERMCAP0=termcap0."$(O)"
 
45
-- 
 
46
1.7.7.1
 
47