--- kazehakase-0.5.2.orig/debian/docs +++ kazehakase-0.5.2/debian/docs @@ -0,0 +1,4 @@ +README +README.ja +TODO +TODO.ja --- kazehakase-0.5.2.orig/debian/menu +++ kazehakase-0.5.2/debian/menu @@ -0,0 +1,4 @@ +?package(kazehakase):needs="X11" section="Apps/Net" \ + title="kazehakase" command="/usr/bin/kazehakase" \ + icon="/usr/share/pixmaps/kaze_icon.xpm" + --- kazehakase-0.5.2.orig/debian/control +++ kazehakase-0.5.2/debian/control @@ -0,0 +1,21 @@ +Source: kazehakase +Section: web +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Hidetaka Iwai +Build-Depends: automake1.7, g++-4.2, gcc-4.2, intltool, libtool, debhelper (>> 4.0.0), cdbs, quilt, libatk1.0-dev, libglib2.0-dev (>= 2.12.0), libgtk2.0-dev (>= 2.12.0), libpango1.0-dev, libnspr4-dev (>= 4.6.0), libxul-dev, libgnutls-dev (>= 1.2.6), ruby1.8, ruby1.8-dev, libgtk2-ruby, libgettext-ruby1.8 +Standards-Version: 3.7.3 + +Package: kazehakase +Architecture: any +Section: web +Suggests: migemo +Recommends: hyperestraier +Provides: www-browser +Depends: ${shlibs:Depends}, ruby1.8, libgtk2-ruby, libgettext-ruby1.8 +Conflicts: kazehakase-migemo +Description: gecko based web browser using GTK + Kazehakase is a web browser using Gecko as HTML rendering engine. + . + Kazehakase has toolbar with rss/rdf menus, rss/rdf viewer, normal bookmarks, + search window for google. These are to be available as plugins. --- kazehakase-0.5.2.orig/debian/kaze_icon.xpm +++ kazehakase-0.5.2/debian/kaze_icon.xpm @@ -0,0 +1,52 @@ +/* XPM */ +static char * kaze_icon_xpm[] = { +"32 32 17 1", +" c None", +". c #333333", +"+ c #191919", +"@ c #4C4C4C", +"# c #B2B2B2", +"$ c #999999", +"% c #666667", +"& c #7F7F7F", +"* c #CCCCCC", +"= c #000000", +"- c #7F7F00", +"; c #FFFF00", +"> c #007F7F", +", c #E5E5E5", +"' c #00007F", +") c #00FFFF", +"! c #007F00", +" ", +" ", +" ", +" ===+== ", +" =+++....+++= ", +" ++.@$*,,*#%.++ ", +" =++.>#,*,*,**$.++= ", +" ++.+@#####***##%..+= ", +" +...@$&####$$#,&@@@+ ", +" +..'+.>%%%>&$#&,$$#-@+ ", +" =+..+++@@@.@@-#%,@#;#@.= ", +" +......++@$*$+.@*+-;*%.+ ", +" ..>...%+%.*%+..@#+%**%.. ", +" '..@@..&@&+&.+.+@&.-;-@@.= ", +" +.@@>..&+@+&@%#+@&.$*%.>.+ ", +" +.@@@@.&.*@%@%$+@-@;$+.@.+ ", +" +@>@%&%%+%+%#$..@$#*@++@@+ ", +" '@@>&*$@.+@#%++@.;*-@++@@+ ", +" +@@&**#+@.+$+.@.$;%%@++@@+ ", +" '@%-;,&+..%#.@$##*@@%..@@= ", +" .%$,*.%&&$&.-*;@-#+>+.@. ", +" +%-;#@.@.@-#*-@++*@.+%@+ ", +" =@-;,*#$#*;#-%%%@%*%@&.= ", +" +-#;;*;*#$$&&&&&@$,,$= ", +" .-&$#$$$$$$$$$$&%%#@= ", +" @!&$$#$#$##$##$$@.+ ", +" .%$$#########$>. ", +" +>&>$#$)#$$&%. ", +" .@>&%&%>@.+ ", +" '+++ ", +" ", +" "}; --- kazehakase-0.5.2.orig/debian/rules +++ kazehakase-0.5.2/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) + +DEB_MOZ_APPLICATION=kazehakase + +DEB_SRCDIR := . + +DEBIAN_VERSION := $(shell dpkg-parsechangelog | sed -n 's/^Version: *\(.*\)$$/\1/ p') +DEBIAN_UPSTREAM_VERSION := $(shell echo $(DEBIAN_VERSION) | sed 's/^\(.*\)-[^-]*$$/\1/') +DEBIAN_REV_CODE := $(shell echo $(DEBIAN_VERSION) | sed 's/^.*-\([0-9]*\)[^-]*$$/0\1/ ; s/^.*\(..\)$$/\1/') +DEBIAN_DATE ?= $(shell echo $(DEBIAN_VERSION) | sed 's/^.*cvs\([0-9]*\).*$$/\1/') + +QUILT_OPTS = --quiltrc /dev/null +QUILT_REFRESH_ARGS = --diffstat -U8 +export QUILT_REFRESH_ARGS + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + OPTFLAGS = -O0 +else + OPTFLAGS = -O2 -fno-strict-aliasing +endif + +OPTFLAGS += -g + +CXX=g++-4.2 +CC=gcc-4.2 +export CXX CC + +DEB_DH_INSTALL_SOURCEDIR := debian/tmp + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk + +MOZ_APPLICATION=$(DEB_MOZ_APPLICATION) + +DEB_CONFIGURE_USER_FLAGS= \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --enable-migemo \ + --with-gecko-engine=xulrunner \ + --enable-gtkmozembed \ + $(NULL) + +install/$(DEB_MOZ_APPLICATION):: + install -d -m 755 debian/$(DEB_MOZ_APPLICATION)/usr/share/pixmaps + install -m 644 debian/kaze_icon.xpm debian/$(DEB_MOZ_APPLICATION)/usr/share/pixmaps + +debian/patches/99_configure.patch: + if [ ! -h patches ] ; then ln -s debian/patches patches ; fi + if [ -f debian/patches/99_configure.patch ] ; then \ + quilt $(QUILT_OPTS) delete -r 99_configure.patch ; \ + fi + quilt $(QUILT_OPTS) push -a || test $$? = 2 + quilt $(QUILT_OPTS) new 99_configure.patch + quilt $(QUILT_OPTS) add configure + quilt $(QUILT_OPTS) add po/Makefile.in.in + for FILE in `find . -type f -name Makefile.in | grep -v po/Makefile.in` ; do \ + quilt $(QUILT_OPTS) add $$FILE ; \ + done + aclocal -I macros + automake --add-missing --foreign --copy + autoconf + quilt $(QUILT_OPTS) refresh + --- kazehakase-0.5.2.orig/debian/changelog +++ kazehakase-0.5.2/debian/changelog @@ -0,0 +1,996 @@ +kazehakase (0.5.2-0ubuntu1) hardy; urgency=low + + * New upstream release. (LP: #187210) + * debian/control: + + Modified Maintainer value to match the DebianMaintainerField + specification. + + Dropped XS-Vcs-Bzr field. + + Updated ruby dependencies. + + Bumped Standards-Version to 3.7.3. + * debian/patches: + + Dropped fix_password_manager_with_xul.patch (target file doesn't + exist). + + -- Miguel Ruiz Thu, 14 Feb 2008 12:02:44 -0300 + +kazehakase (0.5.0-0ubuntu1) hardy; urgency=low + + * New upstream release: 0.5.0 + * Update CDBS install rules + - update debian/rules + - drop debian/kazehakase.install + * Update diverged patch: + - update debian/patches/fix_undefined_variables_in_makefiles.patch + * Drop universe from section, add XS-Vcs-Bzr and target to hardy + - update debian/control and debian/changelog + + -- Fabien Tassin Mon, 12 Nov 2007 16:48:34 +0100 + +kazehakase (0.4.9-0ubuntu1~mt3) gutsy; urgency=low + + RELEASE 0.4.9-0ubuntu1~mt3 pushed to gutsy/ppa + + * drop strict nspr range from build-deps now that the new + nspr is in. + + -- Fabien Tassin Sun, 30 Sep 2007 22:29:45 +0200 + +kazehakase (0.4.9-0ubuntu1~mt2) gutsy; urgency=low + + RELEASE 0.4.9-0ubuntu1~mt2 pushed to gutsy/ppa + + * move to universe as it FTBFSed in ppa/main because + of libxul-dev + + -- Fabien Tassin Sun, 30 Sep 2007 20:40:09 +0200 + +kazehakase (0.4.9-0ubuntu1~mt1) gutsy; urgency=low + + New upstream release: 0.4.9 pushed to gutsy/ppa + + [ Fabien Tassin ] + * Migrate from dpatch to quilt + * Migrate to cdbs: redo debian/rules from scratch + * Drop obsolete patches: + - debian/patches/05_add_missing.patch + - debian/patches/20_user_agent_tag.patch + - debian/patches/30_bookmarkbar_DSA.patch + - debian/patches/60_fix_ftbfs.patch + - debian/patches/dont_disable_deprecated.patch + * Add debian/patches/fix_undefined_variables_in_makefiles.patch + * Rename and update debian/patches/50_passwordmgr.patch => + debian/patches/fix_password_manager_with_xul.patch + * Update debian/patches/series and debian/kazehakase.install + * Update debian/control to change Maintainer (use ubuntu-mozillateam), + use g++-/gcc-4.2, cdbs, libnspr4-dev (>= 4.6.0 and << 4.7.0~cvs) and + GTK+ >= 2.12.0 + * Update debian/changelog + + -- Fabien Tassin Sun, 30 Sep 2007 17:13:24 +0200 + +kazehakase (0.4.3-1ubuntu1) gutsy; urgency=low + + * in all Makefile.{am,in}: (LP: #137269) + - removed all G*_DISABLE_DEPRECATED defines to fix FTBFS + * debian/control: + - Updated to match Ubuntu Maintainer Policy + + -- Stephan Hermann Tue, 04 Sep 2007 14:19:08 +0200 + +kazehakase (0.4.3-1) unstable; urgency=low + + * New upstream release + * debian/debian/patches/50_passwordmgr.dpatch: Change the default value + of signon.rememberSignons to false. The password manager of kazehakase + is broken and if signon.rememberSignons is set true, input forms which + require password does not work. (closes: #389954) + * debian/patches/70_fix_certificate_overview.dpatch: Removed + because this is already fixed by upstream. + + -- Hidetaka Iwai Sun, 21 Jan 2007 08:40:07 +0900 + +kazehakase (0.4.2-2) unstable; urgency=low + + * debian/rules: Remove -Wall option from CXXFLAGS to fix FTBFS. + debian/patches/60_fix_ftbfs.dpatch is not needed any more. + + -- Hidetaka Iwai Sat, 11 Nov 2006 19:58:46 +0900 + +kazehakase (0.4.2-1) unstable; urgency=low + + * New upstream release + * debian/patches/60_fix_ftbfs.dpatch: Fixed FTBFS bug due to the new + gecko API checking code. + * debian/patches/70_fix_certificate_overview.dpatch: Fix wrong labels + in Certificate Properties dialog (closes: #394029). + Thanks to Jan Jeronym Zvanovec fot the patch. + + -- Hidetaka Iwai Sat, 11 Nov 2006 18:30:02 +0900 + +kazehakase (0.4.1-1) unstable; urgency=low + + * New upstream release. + + -- Hidetaka Iwai Tue, 7 Nov 2006 23:26:05 +0900 + +kazehakase (0.4.0-1) unstable; urgency=low + + * New upstream release + * Acknowledge NMU (closes: #380466). Thanks to Gerfried Fuchs, + Yavor Doganov, Mike Hommey, and Andreas Barth! + * My first upload without sponsor. Thanks to Fimitoshi UKAI for + sponsoring me over the past two years. + + -- Hidetaka Iwai Tue, 7 Nov 2006 22:55:18 +0900 + +kazehakase (0.3.9-1.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/patches/50_passwordmgr.dpatch: Fixed crasher in + GtkPromptService.cpp when signon.rememberSignons is not set, which + happens to be the case with xulrunner but not with mozilla. Also + set it if not already user set. Closes:#380466 + Thanks to Gerfried Fuchs and Yavor Doganov for their help. + Thanks to Mike Hommey for the fix. + + -- Andreas Barth Sat, 9 Sep 2006 12:46:39 +0200 + +kazehakase (0.3.9-1) unstable; urgency=low + + * New upstream release. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sun, 6 Aug 2006 03:33:07 +0900 + +kazehakase (0.3.8-3) unstable; urgency=low + + * Changed to use xulrunner instead of mozilla-browser + (Thanks to Mike Hommey ) (closes: #352084) + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka IWAI Wed, 26 Jul 2006 23:03:12 +0900 + +kazehakase (0.3.8-2) unstable; urgency=low + + * Rebuilt against mozilla-1.7.13 + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sun, 25 Jun 2006 15:57:29 +0900 + +kazehakase (0.3.8-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sun, 4 Jun 2006 23:58:02 +0900 + +kazehakase (0.3.7-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Mon, 1 May 2006 23:14:05 +0900 + +kazehakase (0.3.6-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Wed, 29 Mar 2006 02:29:32 +0900 + +kazehakase (0.3.5-1) unstable; urgency=low + + * New upstream release + * debian/control: + - Added ruby extension stuffs. + - Added hyperestraier to Suggests: field instead of estraier. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Thu, 9 Feb 2006 18:59:47 +0900 + +kazehakase (0.3.4-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sun, 22 Jan 2006 18:37:15 +0900 + +kazehakase (0.3.3-1) unstable; urgency=low + + * New upstream release + * debian/control: Removed the build-depencency on automake-1.6. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Wed, 30 Nov 2005 09:56:50 +0900 + +kazehakase (0.3.2-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sat, 29 Oct 2005 14:22:12 +0900 + +kazehakase (0.3.1-2) unstable; urgency=high + + * Rebuilt against mozilla-1.7.12. + * debian/control: Removed Build-Conflicts with mozilla-dev. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Wed, 12 Oct 2005 18:18:09 +0900 + +kazehakase (0.3.1-1) unstable; urgency=low + + * New upstream release + * Changed to use GNU TLS. + * debian/control: Added dependency on libgnutls-dev. + * Now gtk fileshooder dialog save previous directory for + saving (closes: #316061). + * (Already) Rebuilt with mozilla-1.7.11 (closes: #328404). + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Thu, 29 Sep 2005 18:37:48 +0900 + +kazehakase (0.3.0-3) unstable; urgency=high + + * Rebuilt against mozilla-1.7.11. + * debian/patches/40_mozilla_1.7.8.dpatch: Removed because + this patch is no more needed with mozilla-1.7.11. + * Dropped the OpenSSL support due to the license issue (closes: 327724). + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sun, 18 Sep 2005 08:48:05 +0900 + +kazehakase (0.3.0-2) unstable; urgency=high + + * debian/patches/40_mozilla_1.7.8.dpatch: Fix a crash bug on startup with + mozilla-1.7.10. Thanks to Alexander Sack (closes: #325124). + * debian/copyright: Changed to new FSF address. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Tue, 6 Sep 2005 23:39:16 +0900 + +kazehakase (0.3.0-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Tue, 30 Aug 2005 04:24:27 +0900 + +kazehakase (0.2.9-2) unstable; urgency=low + + * debian/control: Added libssl to the Build-Depends field (closes: #321815). + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Mon, 8 Aug 2005 11:45:01 +0900 + +kazehakase (0.2.9-1) unstable; urgency=low + + * New upstream release + * Rebuilt against mozilla-1.7.10. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sat, 6 Aug 2005 09:57:16 +0900 + +kazehakase (0.2.8-1) unstable; urgency=low + + * New upstream release + * debian/control: + - Bump to new policy version 3.6.2 + - Added estraier to the Recommends field. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Thu, 30 Jun 2005 22:58:04 +0900 + +kazehakase (0.2.7-2) unstable; urgency=low + + * Rebuilt against mozilla-1.7.8. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Tue, 24 May 2005 02:28:22 +0900 + +kazehakase (0.2.7-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sat, 30 Apr 2005 23:13:59 +0900 + +kazehakase (0.2.6-2) unstable; urgency=low + + * Rebuilt against mozilla-1.7.7 (closes: #305696). + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Fri, 22 Apr 2005 00:33:52 +0900 + +kazehakase (0.2.6-1) unstable; urgency=low + + * New upstream release + * debian/patches/40_mozilla_firefox_bookmark.dpatch: Removed + because this is already fixed by upstream. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Tue, 29 Mar 2005 23:26:28 +0900 + +kazehakase (0.2.5-2) unstable; urgency=low + + * debian/patches/40_mozilla_firefox_bookmark.dpatch: + Fixed the path of the bookmark of mozilla-firefox (closes: #295338). + + -- Hidetaka Iwai Sat, 19 Feb 2005 00:17:43 +0900 + +kazehakase (0.2.5-1) unstable; urgency=low + + * New upstream release. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Fri, 11 Feb 2005 19:41:59 +0900 + +kazehakase (0.2.4-1) unstable; urgency=low + + * New upstream release (closes: #292852). + * Fixed the remote bookmark of dsa (closes: #293119). + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Fri, 11 Feb 2005 19:41:30 +0900 + +kazehakase (0.2.3-2) unstable; urgency=high + + * Rebuilt against mozilla-1.7.5 (closes: #289196). + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sat, 8 Jan 2005 21:55:43 +0900 + +kazehakase (0.2.3-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Wed, 29 Dec 2004 16:13:46 +0900 + +kazehakase (0.2.2-1) unstable; urgency=low + + * New upstream release + * debian/kazehakase.postinst: Added --slave to handle a manpage correctly (closes: #281675). + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Thu, 25 Nov 2004 00:54:48 +0900 + +kazehakase (0.2.1-1) unstable; urgency=low + + * New upstream release + * debian/patches/40_dialog_button.dpatch: Deleted because this is + already fixed by upstream. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sat, 30 Oct 2004 13:55:15 +0900 + +kazehakase (0.2.0-2) unstable; urgency=low + + * debian/patches/40_dialog_button.dpatch: Fix wrong button labels + of dialogs. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Thu, 30 Sep 2004 15:21:20 +0900 + +kazehakase (0.2.0-1) unstable; urgency=low + + * New upstream release + * debian/control: Added (build) dependencies on mozilla-1.7.3. + * debian/patches/40_history_search.dpatch: Deleted because this is + already fixed by upstream. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Wed, 29 Sep 2004 00:43:15 +0900 + +kazehakase (0.1.9-2) unstable; urgency=low + + * debian/patches/40_history_search.dpatch: Fix to update + ~/.kazehakase/history* when create_thumnail=no. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sun, 12 Sep 2004 09:40:35 +0900 + +kazehakase (0.1.9-1) unstable; urgency=low + + * New upstream release + * Deleted kazehakase-migemo package because kazehakase has a native + migemo support now, and kzmigemo script isn't needed any more. + * debian/patches/40_kzmigemo.dpatch: Deleted because of the above reason. + * debian/kazehakase.xml: Updated a manpage. + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sun, 29 Aug 2004 01:18:14 +0900 + +kazehakase (0.1.8.1-2) unstable; urgency=high + + * Rebuild against mozilla-1.7.2 and conflicts with mozilla-1.7.3 + (closes: #264591). + * debian/patches/50_mozilla_1.7.2.dpatch: Add to compile against + mozilla-1.7.2 (closes: #260958). + * Sponsored by Fumitoshi UKAI . + + -- Hidetaka Iwai Sat, 21 Aug 2004 13:09:16 +0900 + +kazehakase (0.1.8.1-1.1) unstable; urgency=low + + * NMU + * to avoid segfault with mozilla-1.7.2 (Bug#264591) + conflicts with mozilla-1.7.2 + + -- Fumitoshi UKAI Wed, 11 Aug 2004 21:47:21 +0900 + +kazehakase (0.1.8.1-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI + * 10_use_GETTEXT_PACKAGE.dpatch: Removed because it is no longer necessary. + + -- Hidetaka Iwai Fri, 30 Jul 2004 22:53:45 +0900 + +kazehakase (0.1.8-1) unstable; urgency=low + + * New upstream release + * 50_remote_bookmarks.dpatch: Deleted because this is already fixed + in the upstream source. + * Upstream fixed kazehakase to be compiled with mozilla-1.7.1 + (closes: #260958) + * Sponsored by Fumitoshi UKAI + + -- Hidetaka Iwai Fri, 30 Jul 2004 22:42:25 +0900 + +kazehakase (0.1.7-1) unstable; urgency=low + + * New upstream release. + * Enabled migemo. + * debian/control: Splitted the package and added migemo to the + suggests field. + * debian/patches/40_kzmigemo.dpatch: Fixed to use ruby1.8. + * debian/50_mozilla_1.7.dpatch: Deleted because this is already fixed + in the upstream source. + * debian/patches/50_remote_bookmarks.dpatch: Fixed the behaviour of + remote bookmarkbar when a middle button of mouse is clicked. + * Sponsored by Fumitoshi UKAI + + -- Hidetaka Iwai Thu, 1 Jul 2004 07:22:32 +0900 + +kazehakase (0.1.6-2) unstable; urgency=medium + + * debian/control: Added conflicts and build-conflicts to mozilla-1.8. + * debian/50_mozilla_1.7.dpatch: Fixed to be compiled with mozilla-1.7 + (closes: #256121). + * Sponsored by Fumitoshi UKAI + + -- Hidetaka Iwai Fri, 25 Jun 2004 18:16:46 +0900 + +kazehakase (0.1.6-1) unstable; urgency=low + + * New upstream release + * debian/control: Changed to provide www-browser (closes: #247001). + * debian/kazehakase.xml: Added a manpage. + * Sponsored by Fumitoshi UKAI + + -- Hidetaka Iwai Sun, 30 May 2004 02:04:57 +0900 + +kazehakase (0.1.5-1) unstable; urgency=low + + * New upstream release + * Now work with gtk+-2.4. (closes: #241639) + * debian/kazehakase.postinst, debian/kazehakase.prerm: add kazehakase to + the x-www-browser alternatives. + * Sponsored by Fumitoshi UKAI + + -- Hidetaka Iwai Sat, 1 May 2004 14:03:53 +0900 + +kazehakase (0.1.4-1) unstable; urgency=low + + * New upstream release + * Sponsored by Fumitoshi UKAI + + -- Hidetaka Iwai Thu, 1 Apr 2004 07:53:40 +0900 + +kazehakase (0.1.3+cvs20040320-2.1) unstable; urgency=low + + * debian/patches/30_bookmarkbar_DSA.dpatch: add DSA + * debian/rules: + configure: chmod +x configure mkinstalldirs + clean: rm -f po/*.gmo + * Upload to Debian. + closes: Bug#238286 + * Sponsored by Fumitoshi UKAI + + -- Fumitoshi UKAI Sun, 21 Mar 2004 02:33:00 +0900 + +kazehakase (0.1.3+cvs20040320-2) unstable; urgency=low + + * First upload to Debian. Close wnpp bug. (closes: #238286) + + -- Hidetaka Iwai Sun, 21 Mar 2004 01:43:28 +0900 + +kazehakase (0.1.3+cvs20040320-1) unstable; urgency=low + + * CVS update(trunk) + + -- Hidetaka Iwai Sat, 20 Mar 2004 20:06:50 +0900 + +kazehakase (0.1.3+cvs20040319-1) unstable; urgency=low + + * CVS update(trunk) + + -- Hidetaka Iwai Fri, 19 Mar 2004 23:45:32 +0900 + +kazehakase (0.1.3+cvs20040318-1) unstable; urgency=low + + * CVS update(trunk) + + -- Hidetaka Iwai Thu, 18 Mar 2004 08:28:15 +0900 + +kazehakase (0.1.3+cvs20040316-1) unstable; urgency=low + + * CVS update(trunk) + * debian/patches/30_location_entry.dpatch: Changed the category of + the configuration "LocationEntryRegex" to "LocationEntry" + + -- Hidetaka Iwai Wed, 17 Mar 2004 06:44:19 +0900 + +kazehakase (0.1.3+cvs20040313-2) unstable; urgency=low + + * debian/patches/50_location_entry.dpatch: add UI to change the + behaviour of the location entry. + + -- Hidetaka Iwai Sun, 14 Mar 2004 13:21:30 +0900 + +kazehakase (0.1.3+cvs20040313-1) unstable; urgency=low + + * CVS update(trunk) + + -- Hidetaka Iwai Sat, 13 Mar 2004 18:06:11 +0900 + +kazehakase (0.1.3-1) unstable; urgency=low + + * New upstream release + * debian/control: Update policy to 3.6.1.0 + + -- Hidetaka Iwai Sun, 29 Feb 2004 17:13:52 +0900 + +kazehakase (0.1.2-1) unstable; urgency=low + + * New upstream release + + -- Hidetaka Iwai Thu, 29 Jan 2004 21:59:58 +0900 + +kazehakase (0.1.1+cvs20040124-1) unstable; urgency=low + + * CVS update(trunk). + * Build against mozilla-1.6. + + -- Hidetaka Iwai Sat, 24 Jan 2004 19:03:31 +0900 + +kazehakase (0.1.1+cvs20040116-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Fri, 16 Jan 2004 00:36:40 +0900 + +kazehakase (0.1.1+cvs20040109-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Fri, 9 Jan 2004 13:09:27 +0900 + +kazehakase (0.1.1+cvs20040105-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Mon, 5 Jan 2004 06:26:11 +0900 + +kazehakase (0.1.1+cvs20040103-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Sat, 3 Jan 2004 13:39:39 +0900 + +kazehakase (0.1.1-1) unstable; urgency=low + + * New upstream release + + -- Hidetaka Iwai Mon, 29 Dec 2003 03:10:35 +0900 + +kazehakase (0.1.0+cvs20031206-2) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Sat, 6 Dec 2003 20:22:43 +0900 + +kazehakase (0.1.0+cvs20031206-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Sat, 6 Dec 2003 06:23:02 +0900 + +kazehakase (0.1.0+cvs20031205-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Fri, 5 Dec 2003 05:37:56 +0900 + +kazehakase (0.1.0-1) unstable; urgency=low + + * New upstream release. + + -- Hidetaka Iwai Sat, 29 Nov 2003 19:59:03 +0900 + +kazehakase (0.0.9+cvs20031127-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Thu, 27 Nov 2003 20:59:56 +0900 + +kazehakase (0.0.9+cvs20031119-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Wed, 19 Nov 2003 01:07:33 +0900 + +kazehakase (0.0.9+cvs20031117-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Mon, 17 Nov 2003 08:10:20 +0900 + +kazehakase (0.0.9+cvs20031114-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Sat, 15 Nov 2003 00:09:43 +0900 + +kazehakase (0.0.9+cvs20031113-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Fri, 14 Nov 2003 01:43:10 +0900 + +kazehakase (0.0.9+cvs20031112-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Thu, 13 Nov 2003 03:10:30 +0900 + +kazehakase (0.0.9+cvs20031111-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Tue, 11 Nov 2003 00:04:47 +0900 + +kazehakase (0.0.9+cvs20031107-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Fri, 7 Nov 2003 00:11:55 +0900 + +kazehakase (0.0.9+cvs20031105-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Wed, 5 Nov 2003 06:05:09 +0900 + +kazehakase (0.0.9+cvs20031103-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Mon, 3 Nov 2003 07:43:37 +0900 + +kazehakase (0.0.9+cvs20031101-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Sat, 1 Nov 2003 02:26:30 +0900 + +kazehakase (0.0.9+cvs20031031-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Thu, 30 Oct 2003 23:59:40 +0900 + +kazehakase (0.0.9+cvs20031030-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Thu, 30 Oct 2003 00:53:48 +0900 + +kazehakase (0.0.9-1) unstable; urgency=low + + * New upstream release. + + -- Hidetaka Iwai Thu, 30 Oct 2003 00:53:20 +0900 + +kazehakase (0.0.8+cvs20031028-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Tue, 28 Oct 2003 04:22:53 +0900 + +kazehakase (0.0.8+cvs20031027-1) unstable; urgency=low + + * CVS update(trunk). + * Fix some "mojibake" in debian/changelog. Something wrong with + my vim... + + -- Hidetaka Iwai Mon, 27 Oct 2003 00:59:50 +0900 + +kazehakase (0.0.8+cvs20031026-1) unstable; urgency=low + + * CVS update(trunk). + * Name of the RSS configuration file and its format are changed + (filename toolbar.xml -> bookmarkbar.xml + format -> , -> ) See + http://lists.sourceforge.jp/pipermail/kazehakase-devel/2003-October/000271.html + + -- Hidetaka Iwai Sun, 26 Oct 2003 05:39:16 +0900 + +kazehakase (0.0.8+cvs20031024-2) unstable; urgency=low + + * debian/control + - Change to specify the mozilla version used to build. + + -- Hidetaka Iwai Sat, 25 Oct 2003 01:33:14 +0900 + +kazehakase (0.0.8+cvs20031024-1) unstable; urgency=low + + * CVS update(trunk). + * Build with mozilla-1.5. + + -- Hidetaka Iwai Sat, 25 Oct 2003 01:04:53 +0900 + +kazehakase (0.0.8+cvs20031023-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Fri, 24 Oct 2003 01:54:24 +0900 + +kazehakase (0.0.8+cvs20031022-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Wed, 22 Oct 2003 23:59:43 +0900 + +kazehakase (0.0.8+cvs20031020-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Mon, 20 Oct 2003 04:10:01 +0900 + +kazehakase (0.0.8+cvs20031015-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Wed, 15 Oct 2003 06:48:51 +0900 + +kazehakase (0.0.8+cvs20031012-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Sun, 12 Oct 2003 23:59:23 +0900 + +kazehakase (0.0.8+cvs20031008-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Wed, 8 Oct 2003 23:34:34 +0900 + +kazehakase (0.0.8-1) unstable; urgency=low + + * New upstream release + + -- Hidetaka Iwai Mon, 29 Sep 2003 20:23:38 +0900 + +kazehakase (0.0.7+cvs20030918-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Thu, 18 Sep 2003 00:41:29 +0900 + +kazehakase (0.0.7+cvs20030917-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Wed, 17 Sep 2003 20:03:14 +0900 + +kazehakase (0.0.7+cvs20030915-1) unstable; urgency=low + + * CVS update(trunk). + * debian/control + - Add Build-Depends: libtool + * Remote 50_kz_rss_parsing.dpatch(upstream fixed). + + -- Hidetaka Iwai Mon, 15 Sep 2003 13:09:39 +0900 + +kazehakase (0.0.7+cvs20030904-2) unstable; urgency=low + + * debian/patches/50_kz_rss_parsing.dpatch + - Fix segfault with wrong RSS files. + + -- Hidetaka Iwai Sun, 14 Sep 2003 21:23:56 +0900 + +kazehakase (0.0.7+cvs20030904-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Thu, 4 Sep 2003 15:14:31 +0900 + +kazehakase (0.0.7+cvs20030903-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Wed, 3 Sep 2003 17:25:30 +0900 + +kazehakase (0.0.7+cvs20030902-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Wed, 3 Sep 2003 02:16:12 +0900 + +kazehakase (0.0.7+cvs20030901-1) unstable; urgency=low + + * CVS update(trunk). + + -- Hidetaka Iwai Mon, 1 Sep 2003 18:09:39 +0900 + +kazehakase (0.0.7+cvs20030830-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Sat, 30 Aug 2003 14:56:34 +0900 + +kazehakase (0.0.7-1) unstable; urgency=low + + * New upstream release + + -- Hidetaka Iwai Sat, 30 Aug 2003 04:12:35 +0900 + +kazehakase (0.0.6+cvs20030828-1) unstable; urgency=low + + * CVS current release. + * debian/patches/05_FSH.dpatch + - Fix system configuration files' path. + * debian/patches/30_fix_gesture.dpatch + - Fix typo for gestures to work. + + -- Hidetaka Iwai Thu, 28 Aug 2003 06:34:09 +0900 + +kazehakase (0.0.6+cvs20030822-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Fri, 22 Aug 2003 15:09:22 +0900 + +kazehakase (0.0.6+cvs20030819-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Tue, 19 Aug 2003 10:12:24 +0900 + +kazehakase (0.0.6+cvs20030818-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Mon, 18 Aug 2003 09:35:55 +0900 + +kazehakase (0.0.6+cvs20030817-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Sun, 17 Aug 2003 20:01:40 +0900 + +kazehakase (0.0.6+cvs20030813-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Wed, 13 Aug 2003 05:59:06 +0900 + +kazehakase (0.0.6+cvs20030812-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Tue, 12 Aug 2003 07:54:21 +0900 + +kazehakase (0.0.6+cvs20030811-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Mon, 11 Aug 2003 00:29:47 +0900 + +kazehakase (0.0.6+cvs20030810-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Sun, 10 Aug 2003 04:02:59 +0900 + +kazehakase (0.0.6+cvs20030808-1) unstable; urgency=low + + * CVS current release. + * Now "kazehakase" shell script available in upstream source, + so "kz" shell script is obsolete. Please run "kazehakase" to run + kazehakase. + + -- Hidetaka Iwai Fri, 8 Aug 2003 03:22:51 +0900 + +kazehakase (0.0.6+cvs20030807-1) unstable; urgency=low + + * CVS current release. + * debian/control + - Add Build-Depends: automake1.6 | automake1.7 + + -- Hidetaka Iwai Thu, 7 Aug 2003 04:40:05 +0900 + +kazehakase (0.0.6+cvs20030806-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Wed, 6 Aug 2003 01:38:17 +0900 + +kazehakase (0.0.6+cvs20030805-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Mon, 4 Aug 2003 02:20:05 +0900 + +kazehakase (0.0.6+cvs20030802-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Sat, 2 Aug 2003 23:49:49 +0900 + +kazehakase (0.0.6-1) unstable; urgency=low + + * New upstream release + * debian/control + - bump to new policy version 3.6.0 + + -- Hidetaka Iwai Sat, 2 Aug 2003 00:40:32 +0900 + +kazehakase (0.0.5-1) unstable; urgency=low + + * New upstream release + + -- Hidetaka Iwai Sun, 29 Jun 2003 06:48:05 +0900 + +kazehakase (0.0.4+cvs20030601-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Sun, 1 Jun 2003 16:56:19 +0900 + +kazehakase (0.0.4-1) unstable; urgency=low + + * New upstream release + * debian/patches/20_user_agent_tag.dpatch + - Add to make the browser string recognizeable as Debian. + * debian/control + - Modify the descriptions. + + -- Hidetaka Iwai Fri, 30 May 2003 01:49:57 +0900 + +kazehakase (0.0.3+cvs20030526-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Mon, 26 May 2003 16:07:51 +0900 + +kazehakase (0.0.3+cvs20030523-1) unstable; urgency=low + + * CVS current release. + + -- Hidetaka Iwai Fri, 23 May 2003 20:02:04 +0900 + +kazehakase (0.0.3+cvs20030409-1) unstable; urgency=low + + * New upstream version. + + -- Hidetaka Iwai Wed, 9 Apr 2003 22:33:20 +0900 + +kazehakase (0.0.3-1) unstable; urgency=low + + * Initial Release. + + -- Hidetaka Iwai Sun, 6 Apr 2003 20:50:12 +0900 + --- kazehakase-0.5.2.orig/debian/kazehakase.prerm +++ kazehakase-0.5.2/debian/kazehakase.prerm @@ -0,0 +1,22 @@ +#! /bin/sh +# prerm script for the Debian kazehakase package +# +# see: dh_installdeb(1) + +set -e + +case "$1" in + remove|deconfigure) + # update alternatives for x-www-browser + update-alternatives --remove x-www-browser /usr/bin/kazehakase + ;; + upgrade|failed-upgrade) + ;; + + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +#DEBHELPER# --- kazehakase-0.5.2.orig/debian/compat +++ kazehakase-0.5.2/debian/compat @@ -0,0 +1,2 @@ +4 + --- kazehakase-0.5.2.orig/debian/kazehakase.xml +++ kazehakase-0.5.2/debian/kazehakase.xml @@ -0,0 +1,146 @@ + +.
will be generated. You may view the +manual page with: nroff -man .
| less'. A +typical entry in a Makefile or Makefile.am is: + +DB2MAN=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/\ +manpages/docbook.xsl +XP=xsltproc -''-nonet + +manpage.1: manpage.dbk + $(XP) $(DB2MAN) $< + +The xsltproc binary is found in the xsltproc package. The +XSL files are in docbook-xsl. Please remember that if you +create the nroff version in one of the debian/rules file +targets (such as build), you will need to include xsltproc +and docbook-xsl in your Build-Depends control field. + +--> + + + Hidetaka"> + Iwai"> + + Aug 2004"> + + 1"> + tyuyu@debian.or.jp"> + + kazehakase"> + + + Debian"> + GNU"> + GPL"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2004 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + Gecko based web browser using GTK + + + + &dhpackage; + OPTION... + URL... + + + + DESCRIPTION + + &dhpackage; is a web browser using the +Mozilla rendering and networking engines. + + + + OPTIONS + + + + , + + + + Invoke the action in kazehakase. + + + + , + + + + Show the version. + + + + , + + + + Show this help. + + + + + + EXAMPLES + + + + kazehakase --action "KzWindowTabPopup/TabCopyTitle 1 3" + + + Copy the title of the 3rd tab in the 1st window. + + + + + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). Permission is + granted to copy, distribute and/or modify this document under + the terms of the &gnu; General Public License, Version 2 any + later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in /usr/share/common-licenses/GPL. + + + +
+ --- kazehakase-0.5.2.orig/debian/patches/fix_undefined_variables_in_makefiles.patch +++ kazehakase-0.5.2/debian/patches/fix_undefined_variables_in_makefiles.patch @@ -0,0 +1,129 @@ +--- + ext/ruby/Makefile.am | 5 ++--- + module/embed/gecko/Makefile.am | 2 +- + module/embed/gtk-webcore/Makefile.am | 2 +- + module/embed/ie/Makefile.am | 2 +- + module/search/Makefile.am | 2 +- + 5 files changed, 6 insertions(+), 7 deletions(-) + +Index: kazehakase-0.5.0/ext/ruby/Makefile.am +=================================================================== +--- kazehakase-0.5.0.orig/ext/ruby/Makefile.am ++++ kazehakase-0.5.0/ext/ruby/Makefile.am +@@ -46,22 +46,21 @@ + kz-rb-downloader-group.c \ + kz-rb-bookmark.c \ + kz-rb-sidebar.c + + LDFLAGS = \ + -rpath $(extdir) \ + -avoid-version \ + -module \ +- -export-dynamic $(no_undefined) \ ++ -export-dynamic -no-undefined \ + $(LIBTOOL_EXPORT_OPTIONS) + + ruby_la_LDFLAGS = \ +- $(RUBY_LDFLAGS) \ +- $(RUBY_EXT_LDFLAGS) ++ $(RUBY_LDFLAGS) + + ruby_la_LIBADD = \ + $(INTLLIBS) \ + $(GTK_LIBS) \ + $(LIBGNUTLS_LIBS) \ + $(RUBY_LIBS) \ + $(MOZILLA_COMPONENT_LIBS) \ + $(top_builddir)/src/libkazehakase.la +Index: kazehakase-0.5.0/module/embed/gecko/Makefile.am +=================================================================== +--- kazehakase-0.5.0.orig/module/embed/gecko/Makefile.am ++++ kazehakase-0.5.0/module/embed/gecko/Makefile.am +@@ -109,17 +109,17 @@ + $(MOZILLA_COMPONENT_LIBS) \ + $(GTK_LIBS) \ + $(top_builddir)/src/libkazehakase.la + + LDFLAGS = \ + -rpath $(embeddir) \ + -avoid-version \ + -module \ +- -export-dynamic $(no_undefined) \ ++ -export-dynamic -no-undefined \ + -R$(MOZILLA_HOME) \ + $(LIBTOOL_EXPORT_OPTIONS) + + gecko_la_CPPFLAGS = \ + -DGTK_DISABLE_DEPRECATED=1 \ + -DGDK_DISABLE_DEPRECATED=1 \ + -DMOZILLA_HOME=\"$(MOZILLA_HOME)\" \ + -DMOZILLA_PREFIX=\"$(MOZILLA_PREFIX)\" \ +Index: kazehakase-0.5.0/module/embed/gtk-webcore/Makefile.am +=================================================================== +--- kazehakase-0.5.0.orig/module/embed/gtk-webcore/Makefile.am ++++ kazehakase-0.5.0/module/embed/gtk-webcore/Makefile.am +@@ -18,17 +18,17 @@ + -DGDK_DISABLE_DEPRECATED=1 \ + -DG_DISABLE_DEPRECATED=1 \ + -DG_LOG_DOMAIN=\"Kazehakase-GtkWebCore\" \ + -DGTK_WEBCORE_VERSION=\"$(NRCIT_VERSION)\" + + gtk_webcore_la_LDFLAGS = \ + -avoid-version \ + -module \ +- -export-dynamic $(no_undefined) \ ++ -export-dynamic -no-undefined \ + $(LIBTOOL_EXPORT_OPTIONS) + + if HAVE_WEBKIT_GTK_WEBKIT_H + GTK_WEBCORE_OBJECT_SOURCES = \ + kz-webkit-gtk.cpp kz-webkit-gtk.h + else + GTK_WEBCORE_OBJECT_SOURCES = \ + kz-gtk-webcore.cpp kz-gtk-webcore.h +Index: kazehakase-0.5.0/module/embed/ie/Makefile.am +=================================================================== +--- kazehakase-0.5.0.orig/module/embed/ie/Makefile.am ++++ kazehakase-0.5.0/module/embed/ie/Makefile.am +@@ -20,17 +20,17 @@ + -DGTK_DISABLE_DEPRECATED=1 \ + -DGDK_DISABLE_DEPRECATED=1 \ + -DG_DISABLE_DEPRECATED=1 + + ie_la_LDFLAGS = \ + -avoid-version \ + -module \ + -no-undefined \ +- -export-dynamic $(no_undefined) \ ++ -export-dynamic -no-undefined \ + $(LIBTOOL_EXPORT_OPTIONS) + + ie_la_SOURCES = \ + kz-ie-module.c \ + kz-ie.c kz-ie.h + + ie_la_LIBADD = \ + $(GTK_LIBS) \ +Index: kazehakase-0.5.0/module/search/Makefile.am +=================================================================== +--- kazehakase-0.5.0.orig/module/search/Makefile.am ++++ kazehakase-0.5.0/module/search/Makefile.am +@@ -20,17 +20,17 @@ + -I$(top_srcdir)/src/widget + + LIBADD = $(GLIB_LIBS) + + LDFLAGS = \ + -rpath $(searchdir) \ + -avoid-version \ + -module \ +- -export-dynamic $(no_undefined) \ ++ -export-dynamic -no-undefined \ + $(LIBTOOL_EXPORT_OPTIONS) + + + search_LTLIBRARIES = + + search_common_sources = \ + kz-search-common.h + --- kazehakase-0.5.2.orig/debian/patches/series +++ kazehakase-0.5.2/debian/patches/series @@ -0,0 +1 @@ +fix_undefined_variables_in_makefiles.patch --- kazehakase-0.5.2.orig/debian/copyright +++ kazehakase-0.5.2/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Hidetaka Iwai on +Sun, 6 Apr 2003 20:50:12 +0900. + +It was downloaded from http://sourceforge.jp/projects/kazehakase + +Upstream Authors: Hiroyuki Ikezoe + Takuro Ashie + +Copyright: + + 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; version 2 dated June, 1991. + + 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'. + --- kazehakase-0.5.2.orig/debian/kazehakase.postinst +++ kazehakase-0.5.2/debian/kazehakase.postinst @@ -0,0 +1,28 @@ +#! /bin/sh +# postinst script for the Debian kazehakase package +# +# see: dh_installdeb(1) + +set -e + +case "$1" in + configure|abort-upgrade) + # update alternatives for x-www-browser + update-alternatives --install /usr/bin/x-www-browser \ + x-www-browser /usr/bin/kazehakase 70 \ + --slave /usr/share/man/man1/x-www-browser.1.gz \ + x-www-browser.1.gz /usr/share/man/man1/kazehakase.1.gz + ;; + abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER#