--- xfonts-naga10-1.1.orig/debian/compat +++ xfonts-naga10-1.1/debian/compat @@ -0,0 +1 @@ +4 --- xfonts-naga10-1.1.orig/debian/mkitalic +++ xfonts-naga10-1.1/debian/mkitalic @@ -0,0 +1,419 @@ +#!/usr/bin/gawk --exec +# +# -- makes BDF font italic +# version 0.00.1 +# programmed by Yasuyuki Furukawa +# * public domain * +# + +BEGIN { + dy = 3; # level of slant deep (2; Minimam and deepest) + correct = 3; # level of pixel correction + debug = 0; + verbose = 0; + verbose_min = 100; + + # The table for pixel correction + # format: + # before <- | -> after + # "height offset pattern... | height offset pattern... " + # if the offset is zero, the pattern starts from last + # slant step immidiately. + + # pattern of 'left down to up right' + i = 0; + if (correct >= 3) { + ptable[i++] = "5 -2 ..@ .@ .@ @.. @. 1 -1 .$"; # fixed + ptable[i++] = "5 -4 ... @@@. ..@. .@. @. 2 -2 .$, $, "; +# ptable[i++] = "5 -1 ...@. ...@. ..@. .@. @. 1 3 @$"; # XXX + ptable[i++] = "5 -2 .....@ ....@ ...@. ..@. @@. 1 0 ...@$"; + ptable[i++] = "4 -3 ...@ ...@ ..@. @@.. 1 -1 .$@"; + ptable[i++] = "4 -3 ..@ ..@ .@. @.. 1 0 @$"; + ptable[i++] = "4 -1 .@ .@ @.. @. 2 -1 $, ,$"; + ptable[i++] = "4 -2 ..@ ..@@ @@.. .@. 2 -1 .$@ @@$"; + ptable[i++] = "4 -2 .@ .@. @.. @. 2 -1 $, ,$"; + } + if (correct >= 2) { + ptable[i++] = "3 -2 ....@. ..@@. @@... 1 0 @@$..."; + ptable[i++] = "3 -1 ..@ .@ .@. 1 0 .,$"; + ptable[i++] = "3 -2 .@ .@ @.@ 1 -1 $@"; + ptable[i++] = "3 -2 .@ .@. @.. 1 -1 $."; + ptable[i++] = "3 -2 .@ .@@ @.. 1 -1 $@"; + ptable[i++] = "3 -1 ..@ .@. @@. 1 0 .,$"; + ptable[i++] = "3 -2 @@. .@. @.. 1 -1 $,"; + ptable[i++] = "3 -1 @.@ .@. ... 1 0 .@$"; + ptable[i++] = "3 -1 ..@ .@. .@@ 1 0 .,$"; +# ptable[i++] = "3 -2 ..@ .@@ @.@ 1 0 @$"; # XXX + } + + + # pattern of 'left up to down right' + if (correct >= 3) { + ptable[i++] = "6 -2 ..@. ...@. ...@. ...@. ..@. @@. 4 -1 ..$, ...@ ..$, .$,"; + ptable[i++] = "4 -1 @.. @.@ .@. .@. 1 1 $@"; + ptable[i++] = "4 -3 @. @@@ .@ .@ 1 -1 $."; + ptable[i++] = "4 -3 .. @@. ..@. ..@. 2 -2 @, .$,"; + ptable[i++] = "3 -2 @.. .@ .@ 1 -1 $."; + ptable[i++] = "4 -1 .@. .@. ..@. ..@. 1 0 .,$"; + ptable[i++] = "4 -1 .@. @@. ..@. ..@. 2 -1 @, @@$"; # XXX + } + if (correct >= 2) { + ptable[i++] = "3 -1 @.. .@@ .. 1 0 .,@"; # + ptable[i++] = "3 -2 @.. @@. .@ 1 -1 $."; + ptable[i++] = "3 -2 @.@ .@ .@ 1 -1 $@"; + ptable[i++] = "3 -1 .@. .@. ..@. 1 0 ..$"; +# ptable[i++] = "4 -2 @. @. @. .@@ 1 0 $."; # fixed , XXX + ptable[i++] = "4 -1 @. @. .@@ .. 2 0 ,$ .,$"; + ptable[i++] = "3 -1 @. @. .@@ 1 0 ,$"; + ptable[i++] = "3 -2 .. @@. ..@ 1 -1 @,."; + } + + # least pattern + ptable[i++] = "4 -2 ..@ .@ @@@ .. 2 -1 $@ @,@"; + ptable[i++] = "3 -1 .@.. @.@. .@@. 1 0 $" # fixed + ptable[i++] = "2 -1 .@ @. 1 -1 $"; + + init(); +} + + +func init(i, tmp) +{ +# local i, tmp; + flag = 0; # reading status + line[0]; # image buffer + if (ARGV[1] == "-h") { + usage(); + exit(0); + } + if (ARGV[1] == "-V") { + verbose = 1; + delete ARGV[1]; + } + if (ARGV[1] == "-d") { + debug = 1; + delete ARGV[1]; + } + if (ARGV[1] == "-D") { + debug = 2; + delete ARGV[1]; + } + if (ARGV[1] == "-p") { + print_ptable(); + exit(1); + } + + vmeter[0] = "|"; + vmeter[1] = "\\"; + vmeter[2] = "-"; + vmeter[3] = "/"; + + "stty size 2> /dev/null" |getline col; + sub(/.* /, "", col); + if (col !~ /^[1-9]/ || col < 30) + col = 0; +} + +func usage() { + printf("usage: mkitalic [-V|-d|-p] {input BDF} > {output BDF}\n"); + printf(" -V verbose\n"); + printf(" -p output pettern table for pixel correction\n"); + printf(" -d debug level 1\n"); + printf(" -D debug level 2\n"); +} + +# +# error(str) +# +# Print the error message and exit +# with error state. +# +func error(str) { + printf(str) > "/dev/stderr"; + exit(1) +} + +# +# rstr(s, n) +# +# Retern a string that repeats +# pettern s(string). +# +func rstr(s, n, i, r) { +# local i, r; + r = ""; + for (i = 0; i < n; i++) + r = s r; + return r; +} + +# +# subindex(s, t, i) +# +# Serach t(string) in s(string). +# +func subindex(s, t, i, n, r) { +# local n, r; + if (n == 0) + n = length(s); + + if (i == 0) + return index(s, t); + + r = index(substr(s, i, n), t); + if (r != 0) + return r + i - 1; + else + return 0 +} + +# +# replace_substr(s, t, i) +# +# Replace a part of s(string) +# to t(string). +# +func replace_substr(s, t, i) { + return substr(s, 1, i-1) t substr(s, i + length(t)); +} + + +# +# correct_pixel(line, width, height) +# +# Correct the pixels to make pettern +# more clear after the slanting. +# Reference the ptable at the BEGIN +# routine. +# +func correct_pixel(line, width, height, x, y, xx, n, nn, d, dd, i, j) { +# local x, y, xx, n, nn, d, dd, i, j; + if (correct == 0) + return; + + # add padding pixels from both side + line[height] = rstr(".", width); + for (y = 0; y < height + 1; y ++) + sub(/.*/, ".&.", line[y]); + + # pattern matching with ptable + for (y = dy; y < height ; y += dy) { + for (i = 0; ptable[i]; i++) { + split(ptable[i], p, " "); + n = p[2]; d = p[1]; + if (y+n < 0 || y+n+d > height + 1) + continue; + for (x = 1; x < width && x > 0; x++) { + x = subindex(line[y+n], p[3], x); + if (x == 0) break; + for (j = 1; j < d; j++) { + xx = subindex(line[y+n+j], p[j+3], x); + if (x != xx) break; + } + if (x == xx) { # matched ! + if (debug > 1) + print "$$$$ MATCH with " i " $$$$ (" x ", " y ")"; + nn = p[d+4]; dd = p[d+3]; + for (j = 0; j < dd; j++) + line[y+nn+j] = replace_substr(line[y+nn+j], p[j+d+5], x); + break; + } + } + } + } + + # delete padding pixels from both side + for (y = 0; y < height; y ++) { + sub(/^\./, "", line[y]); + sub(/\.$/, "", line[y]); + } +} + +# +# make_slant(line, width, height) +# +# Just slant the pattern of font. +# +func make_slant(line, width, height, y, i, dcount, ncount, tp, ts, te) { +# local y, i, dcount, ncuont, tp, ts, te; + dcount = dx; + ncount = 0; + tp = rstr("#", pad); + + for (y = 0; y < height; y++) { + if (y % dy == 0) { + ts = rstr( "#", dcount-- - 1); + te = rstr( "#", ncount++) tp; + } + line[y] = ts substr(line[y], 1, width) te; + } +} + + +# +# print_ptable() +# +# Visualize ptable. +# +func print_ptable(i, j, n, d, nn,dd, p, pp) { +# local i, j, n, d, nn,dd, p, pp; + + printf("\t#### PATTERN TABLE ####\n"); + printf("\nFollowing patterns is for pixel correction in slant.\n"); + printf("Priority between patterns depends on pattern ID.\n"); + + for (i = 0; ptable[i]; i++) { + split(ptable[i], p, " "); + n = p[2]; d = p[1]; + for (j = 0; j < d; j++) + pp[j] = p[j+3]; + + nn = p[d+4]; dd = p[d+3]; + for (j = 0; j < dd; j++) + p[-n+nn+3+j] = replace_substr(p[-n+nn+3+j], p[j+d+5], 1); + + printf("\n\t--- pattern " i " ---\n\n"); + for (j = 0; j < d; j++) { + printf(" " pp[j]); + printf(rstr(" ", 7 - length(pp[j]))); + if (j == int(d/2)) + printf(" ==> "); + else + printf(" "); + + if (j +n < dy) printf(" "); + if (j +n < 0) printf(" "); + printf(pp[j]); + + printf(rstr(" ", 7 - length(pp[j]))); + if (j == int(d/2)) + printf(" ==> "); + else + printf(" "); + + printf(p[j+3] "\n"); + } + } +} + +END { + if (verbose != 0 && max_chars > verbose_min) + printf "\r" rstr(" ", col - 3) "\r" > "/dev/stderr"; + exit(0); +} + +# +# MAIN LOOP +# +# All of the follows is the main +# loop routine. +# + +# Change the font property +/^FONT[ \t]/ { + tmp = gsub(/-[R|r]-/, "-I-", $2); + if (tmp == 0) + error("error: the input font is already italic.\n"); +} + +# Change the font property +/^SLANT[ \t]/ { + sub( /\042[R|r]\042/, "\042I\042", $2); +} + +# Get the metric information from the bounding box. +/^BBX[ \t]/ { + height = $3; + width = $2; + dx = int((height + dy - 1)/dy); + if (height > 0 && width > 0) { + $2 = $2 + dx - 1; + $4 = $4 - int((dx -1)/2); + pad = (8 - ($2 % 8)) % 8; + } else + pad = 0; +} + +# Get the number of characters. +/^CHARS[ \t]/ { + max_chars = $2; +} + +# Change inner state. +/^BITMAP/ { + flag = 1; + count = 0; + print $0; + next; +} + +# Modify the every font pattern. +/^ENDCHAR/ { + # correct pixel as pre-processing + correct_pixel(line, width, height); + + # make simple slant font + make_slant(line, width, height); + + # output font image + for (y = 0; y < height; y ++) { + if (debug == 0) { + gsub(/#/, ".", line[y]); + gsub(/,/, ".", line[y]); + gsub(/\$/, "@", line[y]); + gsub(/[.@][.@][.@][.@]/, "&_", line[y]); + gsub(/\.\.\.\._/,"0", line[y]); + gsub(/\.\.\.@_/, "1", line[y]); + gsub(/\.\.@\._/, "2", line[y]); + gsub(/\.\.@@_/, "3", line[y]); + gsub(/\.@\.\._/, "4", line[y]); + gsub(/\.@\.@_/, "5", line[y]); + gsub(/\.@@\._/, "6", line[y]); + gsub(/\.@@@_/, "7", line[y]); + gsub(/@\.\.\._/, "8", line[y]); + gsub(/@\.\.@_/, "9", line[y]); + gsub(/@\.@\._/, "A", line[y]); + gsub(/@\.@@_/, "B", line[y]); + gsub(/@@\.\._/, "C", line[y]); + gsub(/@@\.@_/, "D", line[y]); + gsub(/@@@\._/, "E", line[y]); + gsub(/@@@@_/, "F", line[y]); + } + print line[y]; + } + + # Display progress bar in verbose mode + ch_count++ + if (verbose != 0 && max_chars > verbose_min) { + n = int(ch_count * 100 / max_chars); + m = int(n * (col - 21) / 100); + l = col - 20 - m; + printf "\rprogress|" rstr("=", m) rstr(" ", l) n "%%" vmeter[ch_count % 4] > "/dev/stderr"; + } + + flag = 0; +} + +# Default +{ + if (flag > 0) { + gsub(/0/, "...."); + gsub(/1/, "...@"); + gsub(/2/, "..@."); + gsub(/3/, "..@@"); + gsub(/4/, ".@.."); + gsub(/5/, ".@.@"); + gsub(/6/, ".@@."); + gsub(/7/, ".@@@"); + gsub(/8/, "@..."); + gsub(/9/, "@..@"); + gsub(/A|a/, "@.@."); + gsub(/B|b/, "@.@@"); + gsub(/C|c/, "@@.."); + gsub(/D|d/, "@@.@"); + gsub(/E|e/, "@@@."); + gsub(/F|f/, "@@@@"); + line[count++] = $0; + } else + print $0; +} --- xfonts-naga10-1.1.orig/debian/rules +++ xfonts-naga10-1.1/debian/rules @@ -0,0 +1,131 @@ +#!/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. + chmod a+x debian/mkbold debian/mkitalic + + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + #$(MAKE) + #/usr/bin/docbook-to-man debian/xfonts-naga10.sgml > xfonts-naga10.1 + + patch -o maru10.bdf < maru10.bdf.diff + patch -o min10.bdf < min10.bdf.diff + bdftopcf -o maru10.pcf maru10.bdf + bdftopcf -o min10.pcf min10.bdf + bdftopcf -o 5x10B.pcf 5x10B.bdf + bdftopcf -o 5x10rk.pcf 5x10rk.bdf + bdftopcf -o knj10.pcf knj10.bdf + bdftopcf -o 5x10a.pcf 5x10a.bdf + bdftopcf -o knj10B.pcf knj10B.bdf + + # mkbold + debian/mkbold -V maru10.bdf > maru10B.bdf + debian/mkbold -V min10.bdf > min10B.bdf + #debian/mkbold -V 5x10rk.bdf > 5x10rkB.bdf + + bdftopcf -o maru10B.pcf maru10B.bdf + bdftopcf -o min10B.pcf min10B.bdf + #bdftopcf -o 5x10rkB.pcf 5x10rkB.bdf + + # mkitalic + debian/mkitalic -V knj10.bdf > knj10I.bdf + debian/mkitalic -V knj10B.bdf > knj10BI.bdf + debian/mkitalic -V maru10.bdf > maru10I.bdf + debian/mkitalic -V maru10B.bdf > maru10BI.bdf + debian/mkitalic -V min10.bdf > min10I.bdf + debian/mkitalic -V min10B.bdf > min10BI.bdf + debian/mkitalic -V 5x10a.bdf > 5x10aI.bdf + debian/mkitalic -V 5x10B.bdf > 5x10BI.bdf + #debian/mkitalic -V 5x10rk.bdf > 5x10rkI.bdf + #debian/mkitalic -V 5x10rkB.bdf > 5x10rkBI.bdf + + bdftopcf -o knj10I.pcf knj10I.bdf + bdftopcf -o knj10BI.pcf knj10BI.bdf + bdftopcf -o maru10I.pcf maru10I.bdf + bdftopcf -o maru10BI.pcf maru10BI.bdf + bdftopcf -o min10I.pcf min10I.bdf + bdftopcf -o min10BI.pcf min10BI.bdf + bdftopcf -o 5x10aI.pcf 5x10aI.bdf + bdftopcf -o 5x10BI.pcf 5x10BI.bdf + #bdftopcf -o 5x10rkI.pcf 5x10rkI.bdf + #bdftopcf -o 5x10rkBI.pcf 5x10rkBI.bdf + + gzip -9 *.pcf + + 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 + -rm -f maru10.bdf min10.bdf *.pcf.gz *.pcf \ + maru10B.bdf min10B.bdf 5x10rkB.bdf knj10I.bdf \ + knj10BI.bdf maru10I.bdf maru10BI.bdf 5x10aI.bdf \ + 5x10BI.bdf 5x10rkI.bdf 5x10rkBI.bdf min10BI.bdf min10I.bdf + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/xfonts-naga10. + # $(MAKE) install DESTDIR=$(CURDIR)/debian/xfonts-naga10 + cp *.pcf.gz `pwd`/debian/xfonts-naga10/usr/share/fonts/X11/misc/ + cp debian/fonts.alias \ + `pwd`/debian/xfonts-naga10/etc/X11/fonts/X11R7/misc/xfonts-naga10.alias + + +binary-arch: + +binary-indep: build install +# dh_testversion 2 + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs +# dh_installexamples +# dh_installmenu +# dh_installemacsen +# dh_installpam +# dh_installinit +# dh_installcron +# dh_installmanpages +# dh_installinfo +# dh_undocumented + dh_installchangelogs + dh_installxfonts +# dh_link +# dh_strip + dh_compress + dh_fixperms + # You may want to make some executables suid here. +# dh_suidregister +# 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 --- xfonts-naga10-1.1.orig/debian/docs +++ xfonts-naga10-1.1/debian/docs @@ -0,0 +1 @@ +README --- xfonts-naga10-1.1.orig/debian/control +++ xfonts-naga10-1.1/debian/control @@ -0,0 +1,17 @@ +Source: xfonts-naga10 +Section: non-free/x11 +Priority: optional +Maintainer: GOTO Masanori +Build-Depends: debhelper (>= 5.0.33) +Build-Depends-Indep: xfonts-utils, gawk +Standards-Version: 3.6.2 + +Package: xfonts-naga10 +Architecture: all +Depends: ${misc:Depends} +Suggests: xfs | xserver +Conflicts: knj10font, xbase-clients (<< 4.0) +Replaces: knj10font +Description: 10x10 dot Japanese and ISO-8859-1 naga10 fonts + This package includes 10x10 dot Japanese fonts called naga10 for use + with the X Window System. It also includes ISO-8859-1 fonts. --- xfonts-naga10-1.1.orig/debian/mkbold +++ xfonts-naga10-1.1/debian/mkbold @@ -0,0 +1,150 @@ +#!/usr/bin/perl +# +# -- makes BDF font bold +# programmed by NAGAO, Sadakazu +# modified by Yasuyuki Furukawa +# * public domain * +# + +$bdir = 1; # left +$pile = 0; # right + +$verbose = 0; +$verbose_min = 100; + +for $opt (@ARGV) { + if ($opt =~ /^-/) { # option + $bdir = 0 if $opt eq '-r'; # right + $bdir = 1 if $opt eq '-l'; # left + $pile = 0 if $opt eq '-R'; # right + $pile = 1 if $opt eq '-L'; # left + $verbose = 1 if $opt eq '-V'; # verbose + next; + } else { + $file = $opt; + last; + } +} +$file= "-" unless $file; + +open F, $file || die; + +$col = int(`stty -F /dev/tty size 2>/dev/null | sed 's/.* //'`) || 80; + +$ch_count = 0; + +@vmeter = ("|", "\\", "-", "/"); + +while () { + + if (/^FONT[ \t]/ || /^WEIGHT_NAME/) { + s/Medium/Bold/; + print; + next; + } + + if (/^CHARS[ \t]/) { + $max_chars = substr($_, 6); + } + + if (/^BITMAP/) { + $bitmap = 1; + print; + next; + } + + if (/^ENDCHAR/) { + $bitmap = 0; + print; + + if (($ch_count++ % 20) == 0 && $verbose != 0 && $max_chars > $verbose_min) { + $n = int($ch_count * 100 / $max_chars); + $m = int($n * ($col - 21) / 100); + $l = $col - 20 - $m; + printf STDERR "\rprogress|" . rstr("=", $m) . rstr(" ", $l) . "$n%%" . $vmeter[$ch_count2++ % 4] + } + next; + } + + if ($bitmap) { + chop; + $l = (length($_) / 2) - 1; + + if ($bdir) { # left + for $i (0..$l) { + $d[$i] = hex(substr($_, $i*2, 2)); + } + shl(\@bold, \@d, $l); + } else { + for $i (0..$l) { # right + $bold[$i] = hex(substr($_, $i*2, 2)); + } + shr(\@d, \@bold, $l); + + } + + if ($pile) { # left + shl(\@tmp, \@bold, $l); + bitcalc(\@d, \@tmp, \@d, \@bold, $l); + } else { # right + shr(\@tmp, \@d, $l); + bitcalc(\@d, \@tmp, \@bold, \@d, $l); + } + + # print + for $i (0..$l) { + printf "%02x", $d[$i]; + } + + print "\n"; + next; + } + + print; + +} +close F; + +if ($verbose != 0 && $max_chars > $verbose_min) { + printf STDERR "\r" . rstr(" ", $col - 3) . "\r"; +} + +exit 0; + +sub shl { + my ($dout, $din, $size) = @_; + my $c = 0, $d, $i; + for ($i = $size; $i >= 0; $i--) { + $d = $c; + $c = ($din->[$i] & 0x80) >> 7; + $dout->[$i] = (($din->[$i] << 1) & 0xff) | $d; + } +} + +sub shr { + my ($dout, $din, $size) = @_; + my $c = 0, $d, $i; + for $i (0..$size) { + $d = $c; + $c = ($din->[$i] & 0x01) << 7; + $dout->[$i] = ($din->[$i] >> 1) | $d; + } +} + +sub bitcalc { + my ($out, $d1, $d2, $d3, $size) = @_; + for $i (0..$size) { + $out->[$i] = ~$d1->[$i] & $d2->[$i] | $d3->[$i]; + } +} + +sub rstr # (s, n) +{ + my($s, $n) = @_; + my $r = ""; + + for (1 .. $n) { + $r = $s . $r; + } + return $r; +} --- xfonts-naga10-1.1.orig/debian/fonts.alias +++ xfonts-naga10-1.1/debian/fonts.alias @@ -0,0 +1,7 @@ +naga10 -misc-fixed-medium-r-normal--10-90-75-75-c-100-jisx0208.1983-0 +naga10b -misc-fixed-bold-r-normal--10-90-75-75-c-100-jisx0208.1983-0 +k10 -misc-fixed-medium-r-normal--10-90-75-75-c-100-jisx0208.1983-0 +k10b -misc-fixed-bold-r-normal--10-90-75-75-c-100-jisx0208.1983-0 +a10 -misc-fixed-medium-r-normal--10-90-75-75-c-50-iso8859-1 +r10 -misc-fixed-medium-r-normal--10-90-75-75-c-50-jisx0201.1976-0 +b10 -misc-fixed-bold-r-normal--10-90-75-75-c-50-iso8859-1 --- xfonts-naga10-1.1.orig/debian/changelog +++ xfonts-naga10-1.1/debian/changelog @@ -0,0 +1,124 @@ +xfonts-naga10 (1.1-13.1) unstable; urgency=medium + + * Non-maintainer upload. + * debian/mkitalic: + - Use "#!/usr/bin/gawk --exec" to fix gawk behaviour while parsing + script options (Closes: #682058). + + -- Luca Falavigna Sat, 04 Aug 2012 21:22:56 +0200 + +xfonts-naga10 (1.1-13) unstable; urgency=low + + * debian/control: Use Build-Depends-Indep: xfonts-utils instead of xutils. + + -- GOTO Masanori Sun, 7 May 2006 02:44:40 +0900 + +xfonts-naga10 (1.1-12) unstable; urgency=low + + * Adapt new X fonts directory structure. (Closes: #362392) + - Fonts are moved to /usr/share/fonts/X11/misc. + - xfonts-naga10.alias is installed into /etc/X11/fonts/X11R7/misc. + - Update version of Build-Depends-Indep: debhelper to handle + these directory structure. + - Update dependencies. + * Update Standards-Version. + * debian/control: debhelper is declared in Build-Depends. + * debian/rules: binary-arch is not used because it's indep package. + + -- GOTO Masanori Fri, 5 May 2006 09:41:04 +0900 + +xfonts-naga10 (1.1-11) unstable; urgency=low + + * debian/rules: Fix to add chmod +x mkbold/mkitalic, which sometimes + breaks builds. (Closes: #260016) + * debian/control: Update Standards-Version: 3.6.1. + * debian/control: Change maintainers mail address. + * debian/README: Removed. + * debian/control: Add gawk to Build-Depends-Indep. + + -- GOTO Masanori Mon, 26 Jul 2004 09:30:37 +0900 + +xfonts-naga10 (1.1-10) unstable; urgency=low + + * debian/control: add more description, patched by Marek Habersack + . (Closes: #209824) + * add to generate new fonts: min10I, min10BI. + + -- GOTO Masanori Sun, 14 Sep 2003 03:07:09 +0900 + +xfonts-naga10 (1.1-9) unstable; urgency=low + + * debian/control: change build-depends to build-depends-indep. + * debian/control: add depends xutils (>> 4.0.3) + * debian/control: add conflicts xbase-clients (<< 4.0). + * debian/rules: comment out dh_testversion. + * debian/conffiles: added. + + -- GOTO Masanori Sun, 18 Nov 2001 23:31:20 +0900 + +xfonts-naga10 (1.1-8) unstable; urgency=low + + * Maintainer changed. + * debian/rules: copy fonts.alias to + /etc/X11/fonts/naga10/xfonts-naga10.alias (closes: Bug#75553). + * Include bold/oblique naga10 fonts. + + -- GOTO Masanori Thu, 16 Nov 2000 17:32:50 +0900 + +xfonts-naga10 (1.1-7) frozen unstable; urgency=low + + * now use dh_installxfonts (closes: Bug#61885). + + -- Takuo KITAME Fri, 7 Apr 2000 00:10:16 +0900 + +xfonts-naga10 (1.1-6) unstable; urgency=low + + * Fixed misscoding in postrm. + + -- Takuo KITAME Wed, 10 Nov 1999 17:56:36 +0900 + +xfonts-naga10 (1.1-5) unstable; urgency=low + + * control: + Depends: xbase-clients (>= 3.3.3.1-5) + Suggests: xfs | xserver + + -- Takuo KITAME Tue, 2 Nov 1999 02:40:36 +0900 + +xfonts-naga10 (1.1-4) unstable; urgency=low + + * /etc/X11/fonts working. + * rebuid with -sa option of dpkg-buildpackage + + -- Takuo KITAME Sun, 24 Oct 1999 15:29:18 +0900 + +xfonts-naga10 (1.1-3) unstable; urgency=low + + * Renamed knj10font to xfonts-naga10 + + -- Takuo KITAME Fri, 22 Oct 1999 00:45:51 +0900 + +knj10font (1.1-2) unstable; urgency=low + + * Fixed version problem (1.01-1 eq 1.1-1) + + -- Takuo KITAME Wed, 13 Oct 1999 04:23:30 +0900 + +knj10font (1.1-1) unstable; urgency=low + + * New upstream release + * FHS compliance. + * control: Maintainer: address was modified. + * control: Standards-Version: 3.0.0 + + -- Takuo KITAME Tue, 12 Oct 1999 03:31:38 +0900 + +knj10font (1.01-1) unstable; urgency=low + + * Initial Release. + + -- Takuro KITAME Mon, 24 May 1999 06:49:06 +0900 + +Local variables: +mode: debian-changelog +End: --- xfonts-naga10-1.1.orig/debian/dirs +++ xfonts-naga10-1.1/debian/dirs @@ -0,0 +1,2 @@ +usr/share/fonts/X11/misc +etc/X11/fonts/X11R7/misc --- xfonts-naga10-1.1.orig/debian/copyright +++ xfonts-naga10-1.1/debian/copyright @@ -0,0 +1,20 @@ +This package was debianized by Takuro KITAME on +Mon, 24 May 1999 06:49:06 +0900. + +It was downloaded from http://gondow-www.cs.titech.ac.jp/~snagao/fonts/ + +Upstream Author: NAGAO, Sadakazu , + + +Copyright: + + Copyright 1998 (c) NAGAO, Sadakazu. All rights reserved. + + Distribute freely only non-commercial and NO CHANGE archive composition. + + If You want to commercially distribute, or distribute with changed + composion, need contact with Author. + + + Note for Debian: + I contacted with author for "BDF to PCF" distributing.