--- essays1743-1.0.orig/debian/compat +++ essays1743-1.0/debian/compat @@ -0,0 +1 @@ +5 --- essays1743-1.0.orig/debian/changelog +++ essays1743-1.0/debian/changelog @@ -0,0 +1,32 @@ +essays1743 (1.0-4.1) unstable; urgency=low + + * Non-maintainer upload to achieve removal of defoma + * Drop defoma support (remove hints, add maintainer scripts to deal + with hints, drop dependencies, etc.) + + -- Christian Perrier Thu, 21 Jul 2011 16:24:14 +0200 + +essays1743 (1.0-4) unstable; urgency=low + + * New maintainer (closes: #452966) + * Updated Standard Version + + -- Mauro Lizaur Sun, 10 Aug 2008 20:21:18 -0300 + +essays1743 (1.0-3) unstable; urgency=low + + * Orphaning package, setting maintainer to the Debian QA Group. + + -- Ana Beatriz Guerrero Lopez Wed, 05 Dec 2007 15:32:26 +0100 + +essays1743 (1.0-2) unstable; urgency=low + + * Update ConvertFont script for the new fontforge. (Closes: #423763) + + -- Gürkan Sengün Mon, 14 May 2007 10:24:16 +0200 + +essays1743 (1.0-1) unstable; urgency=low + + * Initial release. (Closes: #276146) + + -- Gürkan Sengün Sun, 22 Apr 2007 14:29:00 +0200 --- essays1743-1.0.orig/debian/watch +++ essays1743-1.0/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://thibault.org/fonts/essays/Essays1743-(.*)-ttf\.tar\.gz \ No newline at end of file --- essays1743-1.0.orig/debian/control +++ essays1743-1.0/debian/control @@ -0,0 +1,21 @@ +Source: essays1743 +Section: x11 +Priority: optional +Maintainer: Mauro Lizaur +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: fontforge +Standards-Version: 3.8.0 +Homepage: http://www.thibault.org/fonts/essays/ + +Package: ttf-essays1743 +Architecture: all +Recommends: x-ttcidfont-conf | fontconfig +Depends: ${misc:Depends} +Description: Essays 1743 TrueType font + This font is based on the typeface used in a 1743 English translation of + Montaigne's Essays. It contains normal, bold, italic and bold italic + versions of 817 characters: all of ASCII, Latin-1, and Latin Extended A; + some of Latin Extended B (basically, the ones that are more or less based + on Roman letters); and a variety of other characters, such as oddball + punctuation, numerals, etc. + --- essays1743-1.0.orig/debian/copyright +++ essays1743-1.0/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Gürkan Sengün on +Sun, 22 Apr 2007 14:29:00 +0200. + +It was downloaded from http://www.thibault.org/fonts/essays/ + +Upstream Author: John Stracke + +License: + Copyright (C) 1994 Software Research Academy Japan. + + This font is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU Lesser General Public License +can be found in /usr/share/common-licenses/LGPL-2.1 file. + +debian/scripts/ConvertFont: + + This is stolen from the ttf-freefont Debian package done by + Konstantinos Margaritis . + +The Debian packaging is (C) 2007, Gürkan Sengün and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- essays1743-1.0.orig/debian/docs +++ essays1743-1.0/debian/docs @@ -0,0 +1 @@ +README --- essays1743-1.0.orig/debian/rules +++ essays1743-1.0/debian/rules @@ -0,0 +1,35 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: + fontforge debian/scripts/ConvertFont.ff *.sfd + +clean: + dh_testdir + dh_testroot + rm -f *.ttf + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_install *.ttf usr/share/fonts/truetype/ttf-essays + +binary-arch: + +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- essays1743-1.0.orig/debian/postinst +++ essays1743-1.0/debian/postinst @@ -0,0 +1,9 @@ +#!/bin/sh +set -e + +if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then + dpkg-maintscript-helper rm_conffile /etc/defoma/hints/ttf-essays1743.hints 1:5.1.20080914-1 -- "$@" +fi + +#DEBHELPER# + --- essays1743-1.0.orig/debian/scripts/ConvertFont.ff +++ essays1743-1.0/debian/scripts/ConvertFont.ff @@ -0,0 +1,20 @@ +#!/usr/bin/fontforge +# $Id: ConvertFont,v 1.1.1.1 2004/11/09 19:19:49 markos Exp $ +# Stolen from the ttf-freefont Debian package done by +# Konstantinos Margaritis +# +# Convert fonts from SFD format to TrueType format + +if ($argc > 1) + i = 1; + while ( i < $argc ) + Open($argv[i]) + ttfile = $fontname + ".ttf" + Print("Converting ",ttfile) + Generate(ttfile) + Close() + i++ + endloop +else + Print("Usage: $0 font.sfd [font.sfd ...]") +endif