--- xfonts-jmk-3.0.orig/debian/changelog +++ xfonts-jmk-3.0/debian/changelog @@ -0,0 +1,39 @@ +xfonts-jmk (3.0-4) unstable; urgency=low + + * Uploading with maintainer set to QA group + * debian/copyright: refer to common licence file + * debian/control: change Build-Depends to Build-Depends-Indep + + -- Andrew Pollock Wed, 12 Nov 2003 23:23:49 +1100 + +xfonts-jmk (3.0-3) unstable; urgency=low + + * Updated standards version (Closes: #95694) + * Uses new debhelper + * Added build depends + + -- Joseph Carter Sat, 19 May 2001 17:41:43 -0700 + +xfonts-jmk (3.0-2) unstable; urgency=low + + * Fix postrm (Closes: #49771) + + -- Joseph Carter Wed, 10 Nov 1999 06:43:47 -0800 + +xfonts-jmk (3.0-1) unstable; urgency=low + + * New upstream version + * Read the NEWS file! + * Oooh, this package isn't policy 3 or debhelper 2 yet--we'll fix that! + + -- Joseph Carter Sun, 19 Sep 1999 23:38:45 -0700 + +xfonts-jmk (2.0-1) unstable; urgency=low + + * Initial Release. + + -- Joseph Carter Thu, 20 May 1999 03:04:11 -0700 + +Local variables: +mode: debian-changelog +End: --- xfonts-jmk-3.0.orig/debian/control +++ xfonts-jmk-3.0/debian/control @@ -0,0 +1,29 @@ +Source: xfonts-jmk +Section: x11 +Priority: optional +Maintainer: Debian QA Group +Standards-Version: 3.5.4 +Build-depends-Indep: debhelper (>= 3.0), xutils (>= 4.0.2) + +Package: xfonts-jmk +Architecture: all +Depends: xutils (>= 4.0.2) +Description: James M. Knoble's character-cell fonts for X + These are character-cell fonts for use with the X Window System, + created by Jim Knoble. The current list of fonts included in this + package are: + . + Neep (formerly known as NouveauGothic) + . + A pleasantly legible variation on the standard fixed fonts that + accompany most distributions of the X Window System. Comes in + both normal and bold weights in small, medium, large, + extra-large, and huge sizes, as well as an extra-small size + that only comes in normal weight. Both ISO-8859-1 and + ISO-8859-2 encodings are available. + . + Modd + . + A fixed-width font with sleek, contemporary styling. Normal + and bold weights in a 12-point (6x13) size. ISO-8859-1 + encoding only. --- xfonts-jmk-3.0.orig/debian/copyright +++ xfonts-jmk-3.0/debian/copyright @@ -0,0 +1,47 @@ +Taken from the README: + ++------------------+ +| Acknowledgements | ++------------------+ + +Mark Leisher , author of xmbdfed. +Lorry Philipp, my 7th grade teacher, who taught me calligraphy and the + art of lettering. +The many folks involved with the X Window System. +The many folks who have sent me encouraging feedback. + ++-------------------------------------+ +| Copying, Copyright, and Open Source | ++-------------------------------------+ + +These fonts are all copyright © 1998 Jim Knoble . +I have chosen to release them under the terms of the GNU General Public +License (GPL) version 2.0, or, at your option, any later version. This +means that you may freely modify and distribute these fonts, as long as +you distribute the source code for the fonts as well. The full text of +the GPL is available at /usr/share/common-licenses/GPL + +This form of `free software' is known as Open Source software. See + for more information. + +Some few parts of these fonts are derived from the 6x13 fixed font +accompanying the XFree86-3.3.2 distribution of the X Window System. +That font bears the notice `Public domain font; share and enjoy'. + +The vast majority of this set of fonts is original work. Besides the +derivations noted above, any resemblance to other fonts, copyrighted or +not, may be accounted for by standard letter shapes and the relatively +coarse resolution (75dpi) for which the fonts were created. + ++------------+ +| Disclaimer | ++------------+ + +No warranty of any kind, either express or implied, including that of +merchantibility or fitness for a particular purpose. If anything +breaks, you get to keep both pieces. Your mileage may vary. Eat your +vegetables. + +--jim + +%%%%%%%%%%%%%%% jim knoble %%%%%%%% jmknoble@pobox.com %%%%%%%%%%%%%%%%% --- xfonts-jmk-3.0.orig/debian/dirs +++ xfonts-jmk-3.0/debian/dirs @@ -0,0 +1,2 @@ +usr/X11R6/lib/X11/fonts +etc/X11/fonts/misc --- xfonts-jmk-3.0.orig/debian/docs +++ xfonts-jmk-3.0/debian/docs @@ -0,0 +1,4 @@ +README +NEWS +descriptions.iso8859-1.tbl +descriptions.iso8859-2.tbl --- xfonts-jmk-3.0.orig/debian/rules +++ xfonts-jmk-3.0/debian/rules @@ -0,0 +1,62 @@ +#!/usr/bin/make -f + +# export DH_VERBOSE=1 +export DH_COMPAT=3 + +tmpdir=$(shell pwd)/debian/xfonts-jmk + + +build: build-stamp +build-stamp: + dh_testdir + + xmkmf + $(MAKE) + + touch build-stamp + + +clean: + dh_testdir + dh_testroot + rm -f build-stamp install-stamp + + -$(MAKE) clean + rm -f Makefile + + dh_clean + + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) DESTDIR=$(tmpdir) \ + INSTALL_DIR=/usr/X11R6/lib/X11/fonts/misc install + mv $(tmpdir)/usr/X11R6/lib/X11/fonts/misc/fonts.alias \ + $(tmpdir)/etc/X11/fonts/misc/xfonts-jmk.alias + rm $(tmpdir)/usr/X11R6/lib/X11/fonts/misc/fonts.dir + + touch install-stamp + + +binary: binary-indep binary-arch +binary-arch: build install +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs ChangeLog + dh_installxfonts + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + + +.PHONY: build clean binary-indep binary-arch binary