--- makejvf-1.1a+0.orig/debian/changelog +++ makejvf-1.1a+0/debian/changelog @@ -0,0 +1,32 @@ +makejvf (1.1a+0-2) unstable; urgency=low + + * Removed obsolete links in /usr/doc as suggested by Joey Hess + . + * Fixed makejvf.1 (removing Japanese characters). + + -- Atsuhito KOHDA Mon, 15 Aug 2005 09:20:51 +0900 + +makejvf (1.1a+0-1) unstable; urgency=low + + * The license was changed to the modified BSD and so this could go in main. + But the upstream did not change the version number so I changed the + version to 1.1a+0. + + -- Atsuhito KOHDA Wed, 23 Jan 2002 10:40:13 +0900 + +makejvf (1.1a-2) unstable; urgency=low + + * Supported building with debugging information through the environment + variable `DEB_BUILD_OPTIONS' + + -- Atsuhito KOHDA Wed, 10 Oct 2001 12:35:41 +0900 + +makejvf (1.1a-1) unstable; urgency=low + + * Initial Release. + + -- Atsuhito KOHDA Fri, 25 May 2001 15:39:52 +0900 + +Local variables: +mode: debian-changelog +End: --- makejvf-1.1a+0.orig/debian/control +++ makejvf-1.1a+0/debian/control @@ -0,0 +1,16 @@ +Source: makejvf +Section: tex +Priority: optional +Maintainer: Atsuhito KOHDA +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.2 + +Package: makejvf +Architecture: any +Depends: ${shlibs:Depends} +Description: generate VF file from japanese TeX TFM file for dvips + For japanese font, the real size of PS font and information of TFM file is + a bit different and this causes unexpected output so we need VF file to + fix this situation. + . + This package provide a tool to generate such VF files from TFM files. --- makejvf-1.1a+0.orig/debian/copyright +++ makejvf-1.1a+0/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Atsuhito KOHDA on +Fri, 25 May 2001 15:39:52 +0900. + +It was downloaded from http://www.ascii.co.jp/pb/ptex/base/sources.html#tools + +Upstream Author: ASCII Corporation + +Copyright: + +(Remark: the license was changed in about 2002/01/22) + +Copyright (C) 1999 ASCII Corporation. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of the author may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --- makejvf-1.1a+0.orig/debian/dirs +++ makejvf-1.1a+0/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- makejvf-1.1a+0.orig/debian/docs +++ makejvf-1.1a+0/debian/docs @@ -0,0 +1,4 @@ +Changes.txt +README.txt +COPYRIGHT +COPYRIGHT.jis --- makejvf-1.1a+0.orig/debian/makejvf.1 +++ makejvf-1.1a+0/debian/makejvf.1 @@ -0,0 +1,48 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH MAKEJVF 1 "May 25, 2001" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +makejvf \- generate VF file from japanese TeX TFM file for dvips +.SH SYNOPSIS +.B makejvf +.I " " +.SH DESCRIPTION +This manual page documents briefly the +.B makejvf +command. +This manual page was written for the Debian GNU/Linux distribution +because the original program does not have a manual page. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBmakejvf\fP is a tool to generate VF file from japanese TeX TFM file +for japanized dvips. +.SH EXAMPLES +.TP +.B makejvf min10.tfm rml +This is an example to use min10 as Ryumin-Light-H. +This generates min10.vf and rml.tfm and you should put min10.vf and rml.tfm +in an appropriate directory under /usr/share/texmf and also you should add +"rml Ryumin-Light-H" to psfonts.map +.SH SEE ALSO +The programs are documented in Japanese fully by +.TP +/usr/share/doc/makejvf/README.txt +.SH AUTHOR +This manual page was written by Atsuhito KOHDA , +for the Debian GNU/Linux system (but may be used by others). --- makejvf-1.1a+0.orig/debian/rules +++ makejvf-1.1a+0/debian/rules @@ -0,0 +1,97 @@ +#!/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=3 + +# Uncomment this to turn on debug mode. +#export DEB_BUILD_OPTIONS="debug nostrip" + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) +DEBOP=CFLAGS="-Wall -g" +else +DEBOP= +endif + +PACKAGE := $(shell dpkg-parsechangelog| \ + sed -n 's/^Source: \(.*\)$$/\1/p') +DSTDIR := $(CURDIR)/debian/$(PACKAGE) +BINDIR := $(DSTDIR)/usr/bin + +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) $(DEBOP) + #/usr/bin/docbook-to-man debian/makejvf.sgml > makejvf.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. + -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/makejvf. + install -m 755 makejvf $(BINDIR) + + +# 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 debian/makejvf.1 +# dh_installinfo +# dh_undocumented + dh_installchangelogs Changes.txt + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure