--- dvips-fontdata-n2bk-0.0.2001.12.12.orig/debian/README.Debian +++ dvips-fontdata-n2bk-0.0.2001.12.12/debian/README.Debian @@ -0,0 +1,12 @@ +dvips-fontdata-n2bk for Debian +------------------------------ + +This package contains virtual font data to convert Dai-Nippon fonts +used in dvi files processed with NTT-JTeX to Japanese built-in fonts +in PostScript printer. + +NOTE: This was first packaged privately by TSUCHIYA Masatoshi + and he requested me to upload this +to Debian. I would like to express the greatest thanks to him. + + -- Atsuhito KOHDA , Fri, 14 Dec 2001 14:21:04 +0900 --- dvips-fontdata-n2bk-0.0.2001.12.12.orig/debian/changelog +++ dvips-fontdata-n2bk-0.0.2001.12.12/debian/changelog @@ -0,0 +1,22 @@ +dvips-fontdata-n2bk (0.0.2001.12.12-3) unstable; urgency=low + + * Removed unnecessary Depends: dvipsk-ja in control. + * Updated rules and control a bit and Standards-Version to 3.7.2. + + -- Atsuhito KOHDA Fri, 1 Dec 2006 07:38:22 +0900 + +dvips-fontdata-n2bk (0.0.2001.12.12-2) unstable; urgency=low + + * Fixed rules; every debhelper commands were now under "binary-indep" + + -- Atsuhito KOHDA Fri, 27 Dec 2002 13:38:16 +0900 + +dvips-fontdata-n2bk (0.0.2001.12.12-1) unstable; urgency=low + + * Initial Release. (closes: #127404) + + -- Atsuhito KOHDA Fri, 14 Dec 2001 14:21:04 +0900 + +Local variables: +mode: debian-changelog +End: --- dvips-fontdata-n2bk-0.0.2001.12.12.orig/debian/control +++ dvips-fontdata-n2bk-0.0.2001.12.12/debian/control @@ -0,0 +1,13 @@ +Source: dvips-fontdata-n2bk +Section: tex +Priority: optional +Maintainer: Atsuhito KOHDA +Build-Depends: debhelper (>> 4.1.0) +Standards-Version: 3.7.2 + +Package: dvips-fontdata-n2bk +Architecture: all +Description: Virtual font data to process dvi files generated by NTT-JTeX + This package contains virtual font data to convert Dai-Nippon fonts, + which are used in dvi files generated by NTT-JTeX, to Japanese + built-in fonts in PostScript printer. --- dvips-fontdata-n2bk-0.0.2001.12.12.orig/debian/copyright +++ dvips-fontdata-n2bk-0.0.2001.12.12/debian/copyright @@ -0,0 +1,10 @@ +This package was debianized by Atsuhito KOHDA on +Fri, 14 Dec 2001 14:21:04 +0900. + +It was downloaded from ftp://ftp.math.s.chiba-u.ac.jp/tex/dvips-usage/n2bk.tar.gz + +Upstream Author: Takafumi Sakurai + +Copyright: + + All the data are generated from freely distributable font metrics. --- dvips-fontdata-n2bk-0.0.2001.12.12.orig/debian/dirs +++ dvips-fontdata-n2bk-0.0.2001.12.12/debian/dirs @@ -0,0 +1 @@ +usr/share/texmf/fonts/vf/n2bk --- dvips-fontdata-n2bk-0.0.2001.12.12.orig/debian/postinst +++ dvips-fontdata-n2bk-0.0.2001.12.12/debian/postinst @@ -0,0 +1,49 @@ +#! /bin/sh +# postinst script for dvips-fontdata-n2bk +# +# 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) + if [ -x /usr/bin/mktexlsr ]; then + /usr/bin/mktexlsr + 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 + --- dvips-fontdata-n2bk-0.0.2001.12.12.orig/debian/postrm +++ dvips-fontdata-n2bk-0.0.2001.12.12/debian/postrm @@ -0,0 +1,41 @@ +#! /bin/sh +# postrm script for dvips-fontdata-n2bk +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see /usr/share/doc/packaging-manual/ + +case "$1" in + remove) + if [ -x /usr/bin/mktexlsr ]; then + /usr/bin/mktexlsr + fi + + ;; + + purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 0 + +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + --- dvips-fontdata-n2bk-0.0.2001.12.12.orig/debian/rules +++ dvips-fontdata-n2bk-0.0.2001.12.12/debian/rules @@ -0,0 +1,83 @@ +#!/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 + +# This is the debhelper compatability version to use. +export DH_COMPAT=4 + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. +# $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. +# -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/dvips-fontdata-n2bk. +# $(MAKE) install DESTDIR=$(CURDIR)/debian/dvips-fontdata-n2bk + tar xzf n2bk.tar.gz -C $(CURDIR)/debian/dvips-fontdata-n2bk/usr/share/texmf/fonts/vf/n2bk + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + 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 + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do here. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure