--- wapua-0.06.1.orig/debian/copyright +++ wapua-0.06.1/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Axel Beckert on +Wed, 21 Jun 2006 13:54:06 +0200. + +It was downloaded from http://fsinfo.noone.org/~abe/wApua/ + +Copyright © 2000, 2006 by Axel Beckert + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301, USA. + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- wapua-0.06.1.orig/debian/dirs +++ wapua-0.06.1/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/doc/wapua/examples --- wapua-0.06.1.orig/debian/rules +++ wapua-0.06.1/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DESTDIR=$(CURDIR)/debian/wapua + +configure: configure-stamp +configure-stamp: + dh_testdir + perl Makefile.PL INSTALLDIRS=vendor + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + [ ! -f Makefile ] || $(MAKE) clean + rm -f Makefile Makefile.old + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + $(MAKE) install DESTDIR=$(DESTDIR) + # Remove directories unnecessarily created by ExtUtils::MakeMaker + [ ! -d $(DESTDIR)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(DESTDIR)/usr/lib/perl5 + +# Build architecture-independent files +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs CHANGES + dh_installdocs README + dh_installexamples wApua.rc + dh_installmenu + dh_installman + dh_link usr/bin/wApua usr/bin/wapua \ + usr/share/man/man1/wApua.1p.gz usr/share/man/man1/wapua.1p.gz + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- wapua-0.06.1.orig/debian/changelog +++ wapua-0.06.1/debian/changelog @@ -0,0 +1,40 @@ +wapua (0.06.1-2) unstable; urgency=low + + * Added ${misc:Depends} to Depends (fixes Lintian warning) + * Changed the maintainer e-mail address to my debian.org address. + * Bumped Standards-Version to 3.8.4 (no changes) + + -- Axel Beckert Mon, 01 Feb 2010 01:05:58 +0100 + +wapua (0.06.1-1) unstable; urgency=low + + * New upstream release + + Fixes POD errors + * Acknowledge NMU + * Bumped Standards-Version to 3.8.3 + + [debian/menu] changed menu section + + [debian/control] added Homepage header + + [debian/control] added Vcs-* header + + [debian/control] Remove dependency on perl >= 5.6.0-16 + * Bumped debhelper compatibility to 7 + + [debian/rules] replaced "dh_clean -k" with "dh_prep" + * Fixed further Lintian warnings: + + [debian/copyright] copyright-without-copyright-notice + + [debian/rules] debian-rules-ignores-make-clean-error + * [debian/copyright] Updated URL of upstream homepage + * Added a watch file + + -- Axel Beckert Wed, 02 Dec 2009 18:59:12 +0100 + +wapua (0.06-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with perl 5.10. Closes: #468197 + + -- Mark Hymers Sat, 05 Apr 2008 13:25:27 +0100 + +wapua (0.06-1) unstable; urgency=low + + * Initial Release. + + -- Axel Beckert Wed, 27 Sep 2006 19:55:26 +0200 --- wapua-0.06.1.orig/debian/control +++ wapua-0.06.1/debian/control @@ -0,0 +1,27 @@ +Source: wapua +Section: web +Priority: optional +Maintainer: Axel Beckert +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.4 +Homepage: http://fsinfo.noone.org/~abe/wApua/ +Vcs-Browser: http://git.noone.org/?p=wapua.git +Vcs-Git: http://git.noone.org/wapua.git/ + +Package: wapua +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libwww-perl, perl-tk, libhtml-parser-perl +Suggests: wap-wml-tools, html2wml +Description: Web browser for WAP WML pages + wApua is a web browser for browsing WAP (Wireless Application + Protocol) pages written in the Wireless Markup Language (WML; + versions 1.1 and 1.2 are supported). Its main purpose is to test or + surf WAP pages without connecting with a WAP capable mobile phone, + which may be expensive or impossible, i.e. in case of WAP pages on + the local filesystem. + . + wApua is written in Perl using libwww-perl and Perl/Tk. + . + Included in the package is the command line front-end wbmp2xbm to + wApua's internal converter for decoding WAP Wireless Bitmaps (WBMP) + into X Bitmaps (XBM). --- wapua-0.06.1.orig/debian/watch +++ wapua-0.06.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://fsinfo.noone.org/~abe/wApua/Download.html wApua-([\d\.]*).tar.gz --- wapua-0.06.1.orig/debian/compat +++ wapua-0.06.1/debian/compat @@ -0,0 +1 @@ +6 --- wapua-0.06.1.orig/debian/menu +++ wapua-0.06.1/debian/menu @@ -0,0 +1 @@ +?package(wapua):needs="X11" section="Applications/Network/Web Browsing" title="wApua" command="/usr/bin/wApua"