diff options
author | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:21:03 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:21:03 +0000 |
commit | 2d9ece8bcb1c76c3d6990b83b00019e171c759d7 (patch) | |
tree | b29dca9667fe151b2f01262c5907281ad2c7e3e8 /debian | |
parent | Releasing debian version 0.5.1-4 (diff) | |
download | w3m-2d9ece8bcb1c76c3d6990b83b00019e171c759d7.tar.gz w3m-2d9ece8bcb1c76c3d6990b83b00019e171c759d7.zip |
Releasing debian version 0.5.1-5debian/0.5.1-5
Diffstat (limited to '')
-rw-r--r-- | debian/changelog | 12 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 4 |
4 files changed, 15 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index fb6e283..5e43af3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +w3m (0.5.1-5) unstable; urgency=low + + * fix FTBFS on GNU/kFreeBSD (due to unsatisfied Build-Depends on libgpmg1-dev) + closes: Bug#377793 + * debian/rules: DEB_BUILD_GNU_SYSTEM should be linux-gnu, instead of linux + so that w3m-img works on fbdev + closes: Bug#376240 + * change default accept: line + closes: Bug#374296 + + -- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 7 Aug 2006 11:37:48 +0900 + w3m (0.5.1-4) unstable; urgency=low * GCC 4.0 C++ ABI change. diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control index f36955f..1755648 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: w3m Section: text Priority: standard Maintainer: Fumitoshi UKAI <ukai@debian.or.jp> -Build-Depends: libgc-dev, libncurses5-dev, libgpmg1-dev [!hurd-i386], zlib1g-dev, libssl-dev, debhelper (>= 3.0.0), gawk | awk, libgdk-pixbuf-dev (>= 0.22.0-5), autotools-dev +Build-Depends: libgc-dev, libncurses5-dev, libgpmg1-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], zlib1g-dev, libssl-dev, debhelper (>= 4.0.0), gawk | awk, libgdk-pixbuf-dev (>= 0.22.0-5), autotools-dev Standards-Version: 3.6.1 Package: w3m diff --git a/debian/rules b/debian/rules index 428fbff..179c5c7 100755 --- a/debian/rules +++ b/debian/rules @@ -6,9 +6,7 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -export DH_COMPAT=3 - -ifeq ($(DEB_BUILD_GNU_SYSTEM),linux) +ifeq ($(DEB_BUILD_GNU_SYSTEM),linux-gnu) DEVS=x11,fb+s else DEVS=x11 |