debian/0000755000000000000000000000000011777113054007174 5ustar debian/source/0000755000000000000000000000000011357032305010465 5ustar debian/source/format0000644000000000000000000000001411357032305011673 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000327611777113005010260 0ustar #!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. touch configure-stamp build-arch: build build-indep: build build: configure-stamp build-stamp build-stamp: dh_testdir # Add here commands to compile the package. $(MAKE) #/usr/bin/docbook-to-man debian/canna-shion.sgml > canna-shion.1 touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. [ ! -f Makefile ] || $(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/canna-shion. $(MAKE) install DESTDIR=$(CURDIR)/debian/canna-shion cp -f debian/shion.dics.dir.off \ debian/canna-shion/etc/canna/dics.dir.d/ # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. #binary-arch: build install dh_testdir dh_testroot # dh_installdebconf dh_installdocs # dh_installexamples # dh_installmenu # dh_installlogrotate # dh_installemacsen # dh_installpam # dh_installmime # dh_installinit # dh_installcron # dh_installman # dh_installinfo # dh_undocumented dh_installchangelogs dh_link # dh_strip dh_compress dh_fixperms # dh_makeshlibs dh_installdeb # dh_perl # dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary-arch: build install binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure debian/dirs0000644000000000000000000000005511357032254010054 0ustar var/lib/canna/dic/canna etc/canna/dics.dir.d debian/compat0000644000000000000000000000000211357032254010366 0ustar 5 debian/prerm0000644000000000000000000000242711357032254010245 0ustar #! /bin/sh # prerm script for canna-shion # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `upgrade' # * `failed-upgrade' # * `remove' `in-favour' # * `deconfigure' `in-favour' # `removing' # # for details, see /usr/share/doc/packaging-manual/ case "$1" in remove|upgrade|deconfigure) # install-info --quiet --remove /usr/info/canna-shion.info.gz rm -f /etc/canna/dics.dir.d/shion.dics.dir update-canna-dics_dir if which /usr/bin/cannastat > /dev/null 2>&1; then if cannastat > /dev/null 2>&1; then if which invoke-rc.d > /dev/null 2>&1; then invoke-rc.d canna restart else /etc/init.d/canna restart fi fi fi ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 0 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/shion.dics.dir.off0000644000000000000000000000063611357032254012507 0ustar basho.cbd(basho.mwd) -basho--- keisan.cbd(keisan.mwd) -keisan--- pub.cbd(pub.mwd) -pub--- scien.cbd(scien.mwd) -scien--- sup.cbd(sup.mwd) -sup--- basho.cld(basho.mwd) -basho--- keisan.cld(keisan.mwd) -keisan--- pub.cld(pub.mwd) -pub--- scien.cld(scien.mwd) -scien--- sup.cld(sup.mwd) -sup--- debian/patches/0000755000000000000000000000000011641610756010624 5ustar debian/patches/add-cleanup-in-Makefile0000644000000000000000000000113711641610756015045 0ustar Description: Clean up produced files This patch modified Makefile. Because old version Makefile does not clean up own produced files. . It is seems to me that I may not have claimed originalty, But I would like to clear this patch license for feature maintainer. This patch license is 3 clauses BSD. Author: Yukiharu YABUKI Forwarded: no Last-Update: 2011-10-01 --- canna-shion-0.0.20010204.orig/Makefile +++ canna-shion-0.0.20010204/Makefile @@ -8,6 +8,7 @@ shion: clean: rm -f *~ + rm -f *.cbd *.cld install: install -m 644 ${DICS} ${DESTDIR}/var/lib/canna/dic/canna debian/patches/series0000644000000000000000000000003011641602643012026 0ustar add-cleanup-in-Makefile debian/copyright0000644000000000000000000000104511357032254011123 0ustar This package was debianized by Yoshito Komatsu on Thu, 27 Sep 2001 18:36:36 +0900. It was downloaded from http://web.archive.org/web/20051217013038/http://www.coolbrain.net/shion.html Upstream Author: lain But he is missing. Now I, Yukiharu YABUKI, am going to take over canna-shion dict. It is possbile below Lisense. If you have a problem please contact Yukiharu YABUKI Copyright: 2000 DISTORTION in the SHELL, by lain You are free to redistibute it and/or modify it. debian/README.Debian0000644000000000000000000000036611357032254011236 0ustar canna-shion for Debian ---------------------- To use Shion, you should add the entry of Shion to your .canna file. Please see /usr/share/doc/canna-shion/README.gz file. -- Yoshito Komatsu , Thu, 27 Sep 2001 18:36:36 +0900 debian/postinst0000644000000000000000000000331711357032254011002 0ustar #! /bin/sh # postinst script for canna-shion # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-deconfigure' `in-favour' # `removing' # # for details, see /usr/share/doc/packaging-manual/ # # quoting from the policy: # Any necessary prompting should almost always be confined to the # post-installation script, and should be protected with a conditional # so that unnecessary prompting doesn't happen if a package's # installation fails and the `postinst' is called with `abort-upgrade', # `abort-remove' or `abort-deconfigure'. case "$1" in configure) cp -f /etc/canna/dics.dir.d/shion.dics.dir.off \ /etc/canna/dics.dir.d/shion.dics.dir update-canna-dics_dir if which /usr/bin/cannastat > /dev/null 2>&1; then if cannastat > /dev/null 2>&1; then if which invoke-rc.d > /dev/null 2>&1; then invoke-rc.d canna restart else /etc/init.d/canna restart fi fi else echo "postinst call /usr/bin/cannastat" fi ;; abort-upgrade|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# exit 0 debian/control0000644000000000000000000000100311777113050010565 0ustar Source: canna-shion Section: utils Priority: optional Maintainer: Yukiharu YABUKI Build-Depends: debhelper (>= 5) Build-Depends-Indep: canna Standards-Version: 3.9.3 Package: canna-shion Architecture: all Depends: canna (>= 3.5b2-40), canna-utils, ${misc:Depends} Conflicts: shion Replaces: shion Description: supporting dictionaries for Canna Shion is a set of dictionaries supporting Canna. It has much more words than original dictionaries of Canna and it makes Canna more intelligent. debian/docs0000644000000000000000000000002111357032254010034 0ustar COPYRIGHT README debian/changelog0000644000000000000000000000532011777112726011053 0ustar canna-shion (0.0.20010204-12) unstable; urgency=low * update standard version * remove linitian warnings -- Yukiharu YABUKI Wed, 11 Jul 2012 05:51:22 +0900 canna-shion (0.0.20010204-11) unstable; urgency=low * Fix FTBFS (close: #643071) * Update Standards-Version to 3.9.1 * Made a DEP3 formatted patch. -- Yukiharu YABUKI Sat, 01 Oct 2011 22:18:22 +0900 canna-shion (0.0.20010204-10) unstable; urgency=low * Converting to source format '3.0 (quilt)' * Update Standards-Version to 3.8.4 * add dependency : ${misc:Depends} -- Yukiharu YABUKI Wed, 07 Apr 2010 16:32:36 +0900 canna-shion (0.0.20010204-9) unstable; urgency=low * Update Standards-Version to 3.8.2 * Update compat version to 5 -- Yukiharu YABUKI Mon, 21 Jun 2009 22:21:43 +0900 canna-shion (0.0.20010204-8) unstable; urgency=low * I adopt the package from QA upload. (closes: #429931) * Check 'Makefile is exist' in debian/rules * Change method that canna daemon is running. Old method check that /tmp/.iroha/IROHA is exist. New method check that cannastat return value. see detail : postinst and prerm. * Add dependency which check running cannaserver (cannastat). -- Yukiharu YABUKI Thu, 21 Jun 2007 20:47:58 +0900 canna-shion (0.0.20010204-7) unstable; urgency=low * Orphan this package * Update Standards-Version to 3.7.2.2 -- Yoshito Komatsu Mon, 29 Jan 2007 06:38:10 +0900 canna-shion (0.0.20010204-6) unstable; urgency=low * Move debhelper from Build-Depends-Indep to Build-Depends * Update Standards-Version to 3.7.2.0 -- Yoshito Komatsu Thu, 15 Jun 2006 08:21:01 +0900 canna-shion (0.0.20010204-5) unstable; urgency=low * Update Standards-Version to 3.6.2.0. * Use invoke-rc.d, closes: #367736 -- Yoshito Komatsu Wed, 17 May 2006 23:11:08 -0400 canna-shion (0.0.20010204-4) unstable; urgency=low * Update Standards-Version to 3.5.9.0. * Update debhelper compatible version to 4. -- Yoshito Komatsu Thu, 17 Apr 2003 20:23:38 +0900 canna-shion (0.0.20010204-3) unstable; urgency=low * Modify Build-Depends, closes: #134467 -- Yoshito Komatsu Mon, 18 Feb 2002 15:15:44 +0900 canna-shion (0.0.20010204-2) unstable; urgency=low * Modify postinst and prerm methods. -- Yoshito Komatsu Thu, 24 Jan 2002 16:23:06 +0900 canna-shion (0.0.20010204-1) unstable; urgency=low * Initial Release for debian.org. closes: #113681 -- Yoshito Komatsu Thu, 27 Sep 2001 18:36:36 +0900 Local variables: mode: debian-changelog End: