--- xfonts-artwiz-1.3.orig/debian/control +++ xfonts-artwiz-1.3/debian/control @@ -0,0 +1,52 @@ +Source: xfonts-artwiz +Section: x11 +Priority: optional +Maintainer: Debian QA Group +Build-Depends: debhelper (>> 5.0.31) +Build-Depends-Indep: xutils, bzip2 +Standards-Version: 3.6.2 + +Package: xfonts-artwiz +Architecture: all +Depends: x11-common, ${misc:Depends} +Suggests: artwiz-cursor, xserver | xfs +Conflicts: xfonts-gimpers, artwiz-cursor (<= 2.7) +Replaces: xfonts-gimpers +Description: x11 fonts created by Artwiz, TigerT, and Daniel Erat + Small futuristic fonts for X. This package contains + . + Anorexia (9x11 variable width), + Aqui (12x13 variable width), + Cure (6x10 fixed width), + Drift (6x11 fixed width), + Edges (5x10 fixed width), + Fkp (8x16 fixed width), + Gelly (9x10 variable width), + Glisp-bold (10x11 variable width), + Glisp (9x11 variable width), + Kates (7x14 fixed width), + Lime (5x10 fixed width), + Mints-mild (9x9 variable width), + Mints-strong (9x9 variable width), + Nu (7x9 variable width), + Smoothansi (6x13 fixed width) and + Snap (9x10 variable width) by Artwiz, + . + Runt (5x10 fixed width) and + Smooth (6x13 fixed width) by Daniel Erat, + . + Tixus (5x10 fixed width) by TigerT. + +Package: artwiz-cursor +Architecture: all +Depends: x11-common, ${misc:Depends} +Suggests: xfonts-artwiz, xserver | xfs +Conflicts: big-cursor, xfonts-artwiz (<< 2.0) +Description: artwiz futuristic mouse cursor for x11 + Artwiz fonts are small futuristic ASCII and mouse cursor fonts for X. + This package only contains artwiz mouse cursor font. + Install xfonts-artwiz package for various artwiz fonts for X. + . + This package does not contain a x-cursor-theme. This package contains + a bdf font that replaces X's core cursor font. Do not install this + package if you want x-cursor-theme. --- xfonts-artwiz-1.3.orig/debian/rules +++ xfonts-artwiz-1.3/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +export DH_COMPAT=5 + +build: + dh_testdir + +clean: + dh_testdir + dh_testroot + -rm -rf upstream/artwiz upstream/artwiz-aleczapka-en-sources-1.3 upstream/artwiz-aleczapka-de-sources-1.3 upstream/artwiz-aleczapka-se-sources-1.3 upstream/artwiz_ru + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + #install -m644 debian/xfonts-artwiz.lintian $(CURDIR)/debian/xfonts-artwiz/usr/share/lintian/overrides/xfonts-artwiz + #install -m644 debian/artwiz-cursor.lintian $(CURDIR)/debian/artwiz-cursor/usr/share/lintian/overrides/artwiz-cursor + cd $(CURDIR)/upstream && tar -xvjf artwiz_src.tar.bz2 && cd artwiz && \ + for font in *.bdf; do \ + bdftopcf $${font} | \ + gzip > $(CURDIR)/debian/xfonts-artwiz/usr/share/fonts/X11/misc/$${font%.bdf}.pcf.gz; \ + done + cd $(CURDIR)/upstream && tar -xvjf artwiz-aleczapka-en-sources-1.3.tar.bz2 && cd artwiz-aleczapka-en-sources-1.3 && \ + install -m644 fonts.alias $(CURDIR)/debian/xfonts-artwiz/etc/X11/fonts/X11R7/misc/xfonts-artwiz.alias && \ + for font in *.bdf; do \ + bdftopcf $${font} | \ + gzip > $(CURDIR)/debian/xfonts-artwiz/usr/share/fonts/X11/misc/$${font%.bdf}.pcf.gz; \ + done + cd $(CURDIR)/upstream && tar -xvjf artwiz-aleczapka-de-sources-1.3.tar.bz2 && cd artwiz-aleczapka-de-sources-1.3 && \ + for font in *.bdf; do \ + bdftopcf $${font} | \ + gzip > $(CURDIR)/debian/xfonts-artwiz/usr/share/fonts/X11/misc/$${font%.bdf}.pcf.gz; \ + done + cd $(CURDIR)/upstream && tar -xvjf artwiz-aleczapka-se-sources-1.3.tar.bz2 && cd artwiz-aleczapka-se-sources-1.3 && \ + for font in *.bdf; do \ + bdftopcf $${font} | \ + gzip > $(CURDIR)/debian/xfonts-artwiz/usr/share/fonts/X11/misc/$${font%.bdf}.pcf.gz; \ + done + cd $(CURDIR)/upstream && tar -xvjf artwiz_ru_src.tar.bz2 && cd artwiz_ru && \ + for font in *.bdf; do \ + ./ucs2any.pl +d $${font} maps/koi8-r.enc koi8-r > /dev/null 2>&1; \ + ./ucs2any.pl +d $${font} maps/cp1251.enc microsoft-cp1251 > /dev/null 2>&1; \ + bdftopcf $${font%.bdf}-koi8-r.bdf | \ + gzip > $(CURDIR)/debian/xfonts-artwiz/usr/share/fonts/X11/misc/$${font%.bdf}-koi8-r.pcf.gz; \ + bdftopcf $${font%.bdf}-microsoft-cp1251.bdf | \ + gzip > $(CURDIR)/debian/xfonts-artwiz/usr/share/fonts/X11/misc/$${font%.bdf}-microsoft-cp1251.pcf.gz; \ + done + mv $(CURDIR)/debian/xfonts-artwiz/usr/share/fonts/X11/misc/cursor.pcf.gz \ + $(CURDIR)/debian/artwiz-cursor/usr/share/fonts/X11/misc/artwiz-cursor.pcf.gz + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir -i + dh_testroot -i + dh_installdocs -i + dh_installchangelogs -i + dh_installxfonts -i + dh_link -i + dh_strip -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_shlibdeps -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- xfonts-artwiz-1.3.orig/debian/artwiz-cursor.postrm +++ xfonts-artwiz-1.3/debian/artwiz-cursor.postrm @@ -0,0 +1,11 @@ +#!/bin/sh +set -e + +# Divert the regular cursor back into place now that our version is gone. +if [ "$1" = remove ]; then + dpkg-divert --package artwiz-cursor --remove --rename --divert \ + /usr/share/fonts/X11/misc/cursor.pcf.gz-artwiz \ + /usr/share/fonts/X11/misc/cursor.pcf.gz +fi + +#DEBHELPER# --- xfonts-artwiz-1.3.orig/debian/changelog +++ xfonts-artwiz-1.3/debian/changelog @@ -0,0 +1,174 @@ +xfonts-artwiz (1:1.3-5malc1) precise; urgency=medium + + * Revive abandoned package from Ubuntu Gutsy + + -- Malcolm Scott Sat, 26 Jan 2013 16:49:44 +0000 + +xfonts-artwiz (1:1.3-5) unstable; urgency=low + + * QA Upload + * fix path for diversion in preinst/postrm + * remove obsolete debian/*.lintian + + -- Michael Ablassmeier Thu, 27 Apr 2006 09:18:44 +0200 + +xfonts-artwiz (1:1.3-4) unstable; urgency=low + + * QA Upload + * X fonts transition (Closes: #362345, #362788) + + depend on debhelper >= 5.0.31 + + move debhelper to Build-Depends. + + add ${misc:Depends} and x11-common to Depends. + + -- Michael Ablassmeier Wed, 26 Apr 2006 15:21:01 +0200 + +xfonts-artwiz (1:1.3-3) unstable; urgency=low + + * QA Group upload orphaning this package + * debian/artwiz.preinst: removed bashism + * debian/rules: bumped DH_COMPAT to 4 + + -- Andrew Pollock Mon, 6 Mar 2006 19:29:31 -0800 + +xfonts-artwiz (1:1.3-2) unstable; urgency=low + + * Fix Missing build dependency. Closes:#291259. Closes:#291201. + + -- A Lee Thu, 20 Jan 2005 11:30:48 +0900 + +xfonts-artwiz (1:1.3-1) unstable; urgency=low + + * Add german and swedish encodnig. + * Fix Cyrillic support of anorexia and snap. Closes:#289649. + * Add a comment about x-cursor-theme to artwiz-cursor package's + description. Closes:#280599. + + -- A Lee Sat, 15 Jan 2005 11:06:07 +0900 + +xfonts-artwiz (2.8) unstable; urgency=low + + * Fix wrong diversion. Closes:#271479. + * Add update-alternatives --set x-cursor-theme command to preinst. + + -- A Lee Mon, 13 Sep 2004 21:32:06 +0900 + +xfonts-artwiz (2.7) unstable; urgency=low + + * Add Russian Cyrillic support to anorexia and snap. Closes:#264580. + + -- A Lee Mon, 23 Aug 2004 15:16:48 +0900 + +xfonts-artwiz (2.6) unstable; urgency=low + + * Fix to work with fontconfig. Closes:#244283. + + -- A Lee Sun, 23 May 2004 20:01:51 +0900 + +xfonts-artwiz (2.5) unstable; urgency=low + + * Merge with xfonts-gimpers package (add runt, smooth and tixus). + + -- A Lee Tue, 18 Feb 2003 14:06:34 +0900 + +xfonts-artwiz (2.4) unstable; urgency=low + + * Remove debian/xfonts-artwiz.preinst. Closes:#153715. + + -- A Lee Sun, 21 Jul 2002 15:01:14 +0900 + +xfonts-artwiz (2.3) unstable; urgency=low + + * Fix another typo error. Closes:#152467. + * artwiz-cursor.postrm removes broken link. Closes:#153131. + * xfonts-artwiz does not use dpkg-devert. Closes:#152781. + + -- A Lee Wed, 10 Jul 2002 09:28:23 +0900 + +xfonts-artwiz (2.2) unstable; urgency=low + + * Fix a typo error. Closes:#152467. + Thanks to Carlos Valdivia Yague . + + -- A Lee Wed, 10 Jul 2002 09:28:23 +0900 + +xfonts-artwiz (2.1) unstable; urgency=low + + * Remove font preview URL from description. Closes:#152337. + + -- A Lee Tue, 9 Jul 2002 13:05:54 +0900 + +xfonts-artwiz (2.0) unstable; urgency=low + + * Separate mouse cursor to artwiz-cursor package. Closes:#150686. + + -- A Lee Tue, 2 Jul 2002 14:58:52 +0900 + +xfonts-artwiz (1.9) unstable; urgency=low + + * Add spanish template. Closes:#151519. + + -- A Lee Tue, 2 Jul 2002 14:58:52 +0900 + +xfonts-artwiz (1.8) unstable; urgency=low + + * Fix some wrong FONT_ASCENT and FONT_DESCENT. + Thanks to Theo Wribe . + + -- A Lee Sun, 12 May 2002 15:48:28 +0900 + +xfonts-artwiz (1.7) unstable; urgency=low + + * Fix some wrong font names. + * Fix ugly mints-mild and mints-strong fonts. + Thanks to Theo Wribe . + + -- A Lee Sat, 11 May 2002 09:13:43 +0900 + +xfonts-artwiz (1.6) unstable; urgency=low + + * xfonts-artwiz conflicts with big-cursor. Closes: #146471. + * Fix resize-upwards cursor. Thanks to Erich Schubert . + + -- A Lee Fri, 10 May 2002 18:32:02 +0900 + +xfonts-artwiz (1.5) unstable; urgency=low + + * Add additional fonts. Closes: #143881. + Thanks to Matt Hope . + + -- A Lee Mon, 6 May 2002 15:50:50 +0900 + +xfonts-artwiz (1.4) unstable; urgency=low + + * Add font aliases. Closes: #126887. + + -- A Lee Tue, 1 Jan 2002 15:04:17 +0900 + +xfonts-artwiz (1.3) unstable; urgency=low + + * Fix a spelling error in description. Closes: #125536. + + -- A Lee Tue, 18 Dec 2001 10:56:31 +0900 + +xfonts-artwiz (1.2) unstable; urgency=low + + * Change the charset infomations to iso646.1991-irv. Closes: #120431. + * Convert PCF files to BDF format in source package. Closes: #120430. + + -- A Lee Wed, 21 Nov 2001 14:21:44 +0900 + +xfonts-artwiz (1.1) unstable; urgency=low + + * Add preview URL. Closes: #120074. + + -- A Lee Mon, 19 Nov 2001 09:15:37 +0900 + +xfonts-artwiz (1.0) unstable; urgency=low + + * Initial Release. Closes: #117986. + + -- A Lee Fri, 2 Nov 2001 12:48:00 +0900 + +Local variables: +mode: debian-changelog +End: --- xfonts-artwiz-1.3.orig/debian/xfonts-artwiz.dirs +++ xfonts-artwiz-1.3/debian/xfonts-artwiz.dirs @@ -0,0 +1,3 @@ +usr/share/fonts/X11/misc/ +usr/share/lintian/overrides/ +etc/X11/fonts/X11R7/misc/ --- xfonts-artwiz-1.3.orig/debian/artwiz-cursor.dirs +++ xfonts-artwiz-1.3/debian/artwiz-cursor.dirs @@ -0,0 +1,2 @@ +/usr/share/fonts/X11/misc/ +usr/share/lintian/overrides/ --- xfonts-artwiz-1.3.orig/debian/artwiz-cursor.preinst +++ xfonts-artwiz-1.3/debian/artwiz-cursor.preinst @@ -0,0 +1,16 @@ +#!/bin/sh +set -e + +# Divert the regular cursor font out of the way, so our font is used +# instead. This has to happen before update-font-dir, which is why it's in +# the preinst here; if this package and xfonts-base are installed at the +# same time, it needs to run before that package is unpacked. +if [ "$1" = install ] || [ "$1" = upgrade ]; then + dpkg-divert --package artwiz-cursor --add --rename --divert \ + /usr/share/fonts/X11/misc/cursor.pcf.gz-artwiz \ + /usr/share/fonts/X11/misc/cursor.pcf.gz + + update-alternatives --set x-cursor-theme /etc/X11/cursors/core.theme +fi + +#DEBHELPER# --- xfonts-artwiz-1.3.orig/debian/copyright +++ xfonts-artwiz-1.3/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by A Lee on +Fri, 28 Sep 2001 21:53:43 +0900. + +runt.pcf.gz, smooth.pcf.gz and tixus.bdf are downloaded from +http://hadess.net/debian/perso and all other fonts are downloaded from +http://artwiz.artramp.org/index.phtml?section=art_fonts + +Updated version of artwiz fonts are downloaded from +http://sourceforge.net/project/showfiles.php?group_id=95348. + +Cyrrilized versions of artwiz fonts are downloaded from +http://dev.gentoo.org/~sergey/artwiz.html + +Copyright: + +* runt.pcf.gz and smooth.pcf.gz is made by Daniel Erat + and Public Domain + +* tixus.bdf is made by TigerT, aka Tuomas Kuosmanen + (modified by Bastien Nocera for euro sign) and available + under the GNU General Public License. + +* all the other fonts are by ArtWiz, aka Youngjin Hahn + and updated by Oliwier Ptak . The original artwiz fonts are + licensed under the Ziwtra B00gie License (ZBL) and updated version is licensed + under the GNU General Public License Version 2. + + On Debian systems, the complete text of the GNU General Public + Licence can be found in the /usr/share/common-licenses/GPL file.