debian/0000775000000000000000000000000013151410617007167 5ustar debian/fontforge-common.dirs0000664000000000000000000000002212235244732013330 0ustar usr/share/pixmaps debian/compat0000664000000000000000000000000212235244732010372 0ustar 9 debian/libfontforge-dev.install0000664000000000000000000000006612235244732014022 0ustar /usr/lib/*.so usr/include/fontforge usr/lib/pkgconfig debian/libgdraw4.dirs0000664000000000000000000000001012235244732011725 0ustar usr/lib debian/source/0000775000000000000000000000000012235244732010474 5ustar debian/source/format0000664000000000000000000000001412235244732011702 0ustar 3.0 (quilt) debian/python-fontforge.dirs0000664000000000000000000000003312235244732013363 0ustar usr/share/fontforge/python debian/gbp.conf0000664000000000000000000000004712235244760010615 0ustar [git-buildpackage] compression = bzip2 debian/python-fontforge.install0000664000000000000000000000007112235244732014072 0ustar usr/lib/python* usr/share/fontforge/python/excepthook.py debian/patches/0000775000000000000000000000000013151406400010611 5ustar debian/patches/671971.diff0000664000000000000000000000234612235244732012240 0ustar Description: define SHELL in makefiles Author: Jakub Wilk Bug-Debian: http://bugs.debian.org/671971 Forwarded: no Last-Update: 2012-05-13 --- a/plugins/Makefile.in +++ b/plugins/Makefile.in @@ -10,6 +10,7 @@ libdir = @libdir@ plugindir = $(sharedir)/plugins +SHELL = @SHELL@ LIBTOOL = @LIBTOOL@ INSTALL = @INSTALL@ CC = @CC@ --- a/Makefile.dynamic.in +++ b/Makefile.dynamic.in @@ -14,6 +14,7 @@ srcdir = @srcdir@ top_builddir = . +SHELL = @SHELL@ LIBTOOL = @LIBTOOL@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ --- a/Unicode/Makefile.dynamic.in +++ b/Unicode/Makefile.dynamic.in @@ -11,6 +11,7 @@ GU_REVISION=2 GU_AGE=0 +SHELL = @SHELL@ LIBTOOL = @LIBTOOL@ CC = @CC@ --- a/fontforge/Makefile.dynamic.in +++ b/fontforge/Makefile.dynamic.in @@ -10,6 +10,7 @@ libdir = @libdir@ plugindir = $(sharedir)/plugins +SHELL = @SHELL@ LIBTOOL = @LIBTOOL@ CC = @CC@ O = @O_EXTENSION@ --- a/gdraw/Makefile.dynamic.in +++ b/gdraw/Makefile.dynamic.in @@ -12,6 +12,7 @@ GD_REVISION=10 GD_AGE=0 +SHELL = @SHELL@ LIBTOOL = @LIBTOOL@ CC = @CC@ --- a/gutils/Makefile.dynamic.in +++ b/gutils/Makefile.dynamic.in @@ -16,6 +16,7 @@ GFTP_REVISION=0 GFTP_AGE=0 +SHELL = @SHELL@ LIBTOOL = @LIBTOOL@ CC = @CC@ debian/patches/902_fix_optipng_reads.diff0000664000000000000000000000174212235244732015557 0ustar Description: If trans_alpha is NULL (likely due to optimized png), don't crash Author: Michael Terry Forwarded: yes Bug-Ubuntu: https://launchpad.net/bugs/805752 Bug: http://bugs.debian.org/646619 Index: fontforge-0.0.20110222/gutils/gimagereadpng.c =================================================================== --- fontforge-0.0.20110222.orig/gutils/gimagereadpng.c 2011-10-25 14:17:10.856004364 -0400 +++ fontforge-0.0.20110222/gutils/gimagereadpng.c 2011-10-25 14:17:14.640004404 -0400 @@ -282,9 +282,9 @@ (trans_color->green>>8), (trans_color->blue>>8)); else if ( base->image_type == it_mono ) - base->trans = trans_alpha[0]; + base->trans = trans_alpha ? trans_alpha[0] : 0; else - base->clut->trans_index = base->trans = trans_alpha[0]; + base->clut->trans_index = base->trans = trans_alpha ? trans_alpha[0] : 0; } row_pointers = galloc(_png_get_image_height(png_ptr,info_ptr)*sizeof(png_bytep)); debian/patches/CVE-2017-11569-and-2017-11575.patch0000664000000000000000000000163013151406262015136 0ustar From 7bfec47910293bf149b8debe44c6f3f788506092 Mon Sep 17 00:00:00 2001 From: Jeremy Tan Date: Sun, 30 Jul 2017 11:56:43 +0800 Subject: [PATCH] parsettf.c: Fix out of bounds read condition on buffer Closes #3093 --- fontforge/parsettf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: fontforge-20120731.b/fontforge/parsettf.c =================================================================== --- fontforge-20120731.b.orig/fontforge/parsettf.c +++ fontforge-20120731.b/fontforge/parsettf.c @@ -1744,7 +1744,7 @@ static void readttfcopyrights(FILE *ttf, if ( info->version==NULL ) info->version = copy("1.0"); else if ( strnmatch(info->version,"Version ",8)==0 ) { char *temp = copy(info->version+8); - if ( temp[strlen(temp)-1]==' ' ) + if ( temp[0] != '\0' && temp[strlen(temp)-1]==' ' ) temp[strlen(temp)-1] = '\0'; free(info->version); info->version = temp; debian/patches/series0000664000000000000000000000051313151406400012025 0ustar 008_libgif.diff 020_fix_pyext_path.diff 024_def_background.diff 027_catch_ctrl-c_signal.diff 900_debian_HelpDir_path.diff 901_ld_as_needed.diff 671971.diff gitignore CVE-2017-11568.patch CVE-2017-11569-and-2017-11575.patch CVE-2017-11571.patch CVE-2017-11572-and-CVE-2017-2017-11576.patch CVE-2017-11574.patch CVE-2017-11577.patch debian/patches/027_catch_ctrl-c_signal.diff0000664000000000000000000000223412235244732015731 0ustar Description: Catches the ctrl-c(SIGINT) signal and asks the user whether he really wants to exit. Author: Kęstutis Biliūnas --- Bug-Debian: http://bugs.debian.org/578122 Last-Update: 2010-07-29 --- a/fontforge/start.c +++ b/fontforge/start.c @@ -34,6 +34,8 @@ #ifdef __Mac # include /* getenv,setenv */ #endif +#include +#include int32 unicode_from_adobestd[256]; struct lconv localeinfo; @@ -129,6 +131,23 @@ static void initlibrarysearchpath(void) #endif } +void sigfun(int sig) +{ + int c; + + /* re-set the signal handler again to sigfun, for next time */ + signal(SIGINT, sigfun); + printf("\nYou have pressed Ctrl-C\n" + "Do you really want to quit? [y/n] "); + + c = getchar(); + if (c == 'y' || c == 'Y') { + exit(0); + } else { + while(getchar()!='\n'); + } +} + void InitSimpleStuff(void) { initlibrarysearchpath(); initrand(); @@ -143,6 +162,8 @@ void InitSimpleStuff(void) { if ( getenv("FF_SCRIPT_IN_LATIN1") ) use_utf8_in_script=false; SetDefaults(); + + signal(SIGINT, sigfun); } void doinitFontForgeMain(void) { debian/patches/CVE-2017-11577.patch0000664000000000000000000000374513151406400013331 0ustar From 3245d354865def9d712bdffe61fa211ad6aa4081 Mon Sep 17 00:00:00 2001 From: Jeremy Tan Date: Sun, 30 Jul 2017 09:17:40 +0800 Subject: [PATCH] Fix out of bounds read in getsid Closes #3088 --- fontforge/parsettf.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) Index: fontforge-20120731.b/fontforge/parsettf.c =================================================================== --- fontforge-20120731.b.orig/fontforge/parsettf.c +++ fontforge-20120731.b/fontforge/parsettf.c @@ -3327,8 +3327,14 @@ return( dicts ); } static const char *getsid(int sid,char **strings,int scnt,struct ttfinfo *info) { - if ( sid==-1 ) + if ( sid==-1 ) // Default value, indicating it's not present return( NULL ); + else if (sid < 0) { + LogError(_("Bad sid %d (0 <= sid < %d)\n"), sid, scnt+nStdStrings); + if (info != NULL) + info->bad_cff = true; + return NULL; + } else if ( sidscnt ) { @@ -6036,17 +6042,17 @@ void TTF_PSDupsDefault(SplineFont *sf) { for ( english=sf->names; english!=NULL && english->lang!=0x409; english=english->next ); if ( english==NULL ) return; - if ( english->names[ttf_family]!=NULL && + if ( english->names[ttf_family]!=NULL && sf->familyname!=NULL && strcmp(english->names[ttf_family],sf->familyname)==0 ) { free(english->names[ttf_family]); english->names[ttf_family]=NULL; } - if ( english->names[ttf_copyright]!=NULL && + if ( english->names[ttf_copyright]!=NULL && sf->copyright!=NULL && strcmp(english->names[ttf_copyright],sf->copyright)==0 ) { free(english->names[ttf_copyright]); english->names[ttf_copyright]=NULL; } - if ( english->names[ttf_fullname]!=NULL && + if ( english->names[ttf_fullname]!=NULL && sf->fullname!=NULL && strcmp(english->names[ttf_fullname],sf->fullname)==0 ) { free(english->names[ttf_fullname]); english->names[ttf_fullname]=NULL; debian/patches/CVE-2017-11568.patch0000664000000000000000000000420213151406243013323 0ustar From 4de0c58a01e5e30610c200e9aea98bc7db12c7ac Mon Sep 17 00:00:00 2001 From: Jeremy Tan Date: Sun, 30 Jul 2017 10:20:48 +0800 Subject: [PATCH 3/6] Fix out of bounds read condition and buffer overflow condition * parsettf.c: Reading past the end of the fontnames array * psread.c: Reading more data than is available in type1 * tottf.c: Use snprintf instead of sprintf Closes #3096 diff --git a/fontforge/parsettf.c b/fontforge/parsettf.c index d8c58fa..6de2797 100644 --- a/fontforge/parsettf.c +++ b/fontforge/parsettf.c @@ -3297,6 +3297,10 @@ return( NULL ); offsets[i] = getoffset(ttf,offsize); dicts = galloc((count+1)*sizeof(struct topdicts *)); for ( i=0; ifontmatrix_set ) { diff --git a/fontforge/psread.c b/fontforge/psread.c index 598cc0d..eec6b35 100644 --- a/fontforge/psread.c +++ b/fontforge/psread.c @@ -3702,6 +3702,11 @@ SplineChar *PSCharStringToSplines(uint8 *type1, int len, struct pscontext *conte stack[sp++] = -(v-251)*256 - *type1++ - 108; --len; } else { + if (len < 4) { + LogError(_("Not enough data: %d < 4"), len); + len = 0; + break; + } int val = (*type1<<24) | (type1[1]<<16) | (type1[2]<<8) | type1[3]; stack[sp++] = val; type1 += 4; diff --git a/fontforge/tottf.c b/fontforge/tottf.c index 95fb3d7..2c0ff34 100644 --- a/fontforge/tottf.c +++ b/fontforge/tottf.c @@ -3890,7 +3890,7 @@ void DefaultTTFEnglishNames(struct ttflangname *dummy, SplineFont *sf) { if ( dummy->names[ttf_uniqueid]==NULL || *dummy->names[ttf_uniqueid]=='\0' ) { time(&now); tm = localtime(&now); - sprintf( buffer, "%s : %s : %d-%d-%d", + snprintf( buffer, sizeof(buffer), "%s : %s : %d-%d-%d", BDFFoundry?BDFFoundry:TTFFoundry?TTFFoundry:"FontForge 2.0", sf->fullname!=NULL?sf->fullname:sf->fontname, tm->tm_mday, tm->tm_mon+1, tm->tm_year+1900 ); debian/patches/024_def_background.diff0000664000000000000000000000131412235244732014776 0ustar Sets the default gray background color. This patch by Theppitak Karoonboonyanan . This patch will not be submitted upstream. --- a/gdraw/gxdraw.c +++ b/gdraw/gxdraw.c @@ -5003,7 +5003,7 @@ GXResourceInit(gdisp,programname); gdisp->bs.double_time = GResourceFindInt( "DoubleClickTime", gdisp->bs.double_time ); - gdisp->def_background = GResourceFindColor( "Background", COLOR_CREATE(0xf5,0xff,0xfa)); + gdisp->def_background = GResourceFindColor( "Background", COLOR_CREATE(0xf5,0xf5,0xf5)); gdisp->def_foreground = GResourceFindColor( "Foreground", COLOR_CREATE(0x00,0x00,0x00)); if ( GResourceFindBool("Synchronize", false )) XSynchronize(gdisp->display,true); debian/patches/901_ld_as_needed.diff0000664000000000000000000000316612235244732014442 0ustar --- a/configure.static.in +++ b/configure.static.in @@ -158,7 +158,7 @@ python="no" elif test "$PySubVersion" \!= "" -a "$PySubVersion" -ge 3 -a -e $PyLib -a -e $PyInc; then PyIncs=`python -c "import distutils.sysconfig ; print '-I%s' % distutils.sysconfig.get_config_var('INCLUDEPY')"` - PyLibs=`python -c "import distutils.sysconfig ; print '%s/%s %s' % (distutils.sysconfig.get_config_var('LIBPL'),distutils.sysconfig.get_config_var('LDLIBRARY'),distutils.sysconfig.get_config_var('LIBS'))"` + PyLibs=`${python_prog}-config --libs` LIBS="$LIBS $PyLibs" CPPFLAGS="$CPPFLAGS $PyIncs" else --- a/configure.dynamic.in +++ b/configure.dynamic.in @@ -280,10 +280,10 @@ else python="no" fi - PyLib=`$python_prog -c "import distutils.sysconfig ; print(distutils.sysconfig.get_config_var('LIBPL') + '/' + distutils.sysconfig.get_config_var('LDLIBRARY'))"` + PyLib=`${python_prog}-config --libs` if test "$py_lib" != "" ; then LIBS="$LIBS $py_lib" - elif test "$PyLib" != "" -a -e "$PyLib" ; then + elif test "$PyLib" != ""; then LIBS="$LIBS $PyLib" else AC_SEARCH_LIBS(Py_Main, $PyName python, : , python="no") --- a/configure.in +++ b/configure.in @@ -281,7 +281,7 @@ else python="no" fi - PyLib=`$python_prog -c "import distutils.sysconfig ; print(distutils.sysconfig.get_config_var('LIBPL') + '/' + distutils.sysconfig.get_config_var('LDLIBRARY'))"` + PyLib=`${python_prog}-config --libs` if test "$py_lib" != "" ; then LIBS="$LIBS $py_lib" elif test "$PyLib" != "" -a -e "$PyLib" ; then debian/patches/008_libgif.diff0000664000000000000000000000055312235244732013303 0ustar Add -lgif when linking. This patch from the Ubuntu package by Matthias Klose . --- a/fontforge/Makefile.dynamic.in +++ b/fontforge/Makefile.dynamic.in @@ -19,7 +19,7 @@ X_11LIB = @X_11LIB@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ -STATIC_LIBS = @STATIC_LIBS@ +STATIC_LIBS = @STATIC_LIBS@ -lgif FF_VERSION=1 FF_REVISION=0 debian/patches/900_debian_HelpDir_path.diff0000664000000000000000000000242212235244732015712 0ustar Set up the Debian-package-specific path for documentation. This patch by Kęstutis Biliūnas. This patch will not be submitted upstream. --- a/fontforge/prefs.c +++ b/fontforge/prefs.c @@ -984,9 +984,9 @@ #if defined(__MINGW32__) helpdir = copy(""); #elif defined(DOCDIR) - helpdir = copy(DOCDIR "/"); + helpdir = copy(DOCDIR "/html/"); #elif defined(SHAREDIR) - helpdir = copy(SHAREDIR "/doc/fontforge/"); + helpdir = copy(SHAREDIR "/doc/fontforge/html/"); #else helpdir = copy("/usr/local/share/doc/fontforge/"); #endif --- a/fontforge/uiutil.c +++ b/fontforge/uiutil.c @@ -316,9 +316,9 @@ if ( ! GFileIsAbsolute(file) ) { if ( helpdir==NULL || *helpdir=='\0' ) { #ifdef DOCDIR - strcpy(fullspec,DOCDIR "/"); + strcpy(fullspec,DOCDIR "/html/"); #elif defined(SHAREDIR) - strcpy(fullspec,SHAREDIR "/doc/fontforge/"); + strcpy(fullspec,SHAREDIR "/doc/fontforge/html/"); #else strcpy(fullspec,"/usr/local/share/doc/fontforge/"); #endif @@ -329,7 +329,7 @@ if (( pt = strrchr(fullspec,'#') )!=NULL ) *pt ='\0'; if ( !GFileReadable( fullspec )) { if ( *file!='/' ) { - strcpy(fullspec,"/usr/share/doc/fontforge/"); + strcpy(fullspec,"/usr/share/doc/fontforge/html/"); strcat(fullspec,file); if (( pt = strrchr(fullspec,'#') )!=NULL ) *pt ='\0'; } debian/patches/CVE-2017-11572-and-CVE-2017-2017-11576.patch0000664000000000000000000000165213151406346016142 0ustar From df349365630344ef3004a3c7934c7e7496692fb1 Mon Sep 17 00:00:00 2001 From: Jeremy Tan Date: Sun, 30 Jul 2017 09:38:56 +0800 Subject: [PATCH] readcfftopdict: Prevent stack underflow condition Closes #3091 --- fontforge/parsettf.c | 4 ++++ 1 file changed, 4 insertions(+) Index: fontforge-20120731.b/fontforge/parsettf.c =================================================================== --- fontforge-20120731.b.orig/fontforge/parsettf.c +++ fontforge-20120731.b/fontforge/parsettf.c @@ -3102,6 +3102,10 @@ static struct topdicts *readcfftopdict(F case (12<<8)+24: LogError( _("FontForge does not support type2 multiple master fonts\n") ); info->bad_cff = true; + if (sp < 4) { + LogError(_("CFF dict stack underflow detected: %d < 4\n"), sp); + break; + } td->nMasters = stack[0]; td->nAxes = sp-4; memcpy(td->weightvector,stack+1,(sp-4)*sizeof(real)); debian/patches/CVE-2017-11574.patch0000664000000000000000000000145113151406367013332 0ustar From 62b6433a81ee7ed6e0ac2d6b09ac85b885046ac3 Mon Sep 17 00:00:00 2001 From: Jeremy Tan Date: Sun, 30 Jul 2017 10:27:17 +0800 Subject: [PATCH] parsettf.c: Fix buffer overrun condition Closes #3090 --- fontforge/parsettf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: fontforge-20120731.b/fontforge/parsettf.c =================================================================== --- fontforge-20120731.b.orig/fontforge/parsettf.c +++ fontforge-20120731.b/fontforge/parsettf.c @@ -3507,7 +3507,7 @@ static void readcffset(FILE *ttf,struct for ( i = 1; icharset[i++] = getushort(ttf); cnt = getc(ttf); - for ( j=0; jcharset[i++] = ++first; } } else if ( format==2 ) { debian/patches/gitignore0000664000000000000000000000037712235244732012544 0ustar Description: just ignore .pc files for git Author: Hideki Yamane --- Origin: vendor Forwarded: no Last-Update: 2013-04-15 --- fontforge-0.0.20120101+git.orig/.gitignore +++ fontforge-0.0.20120101+git/.gitignore @@ -0,0 +1 @@ +.pc* debian/patches/CVE-2017-11571.patch0000664000000000000000000000260213151406275013324 0ustar From 5a0c6522682b0788fc478dd159dd6168cb5fa38b Mon Sep 17 00:00:00 2001 From: Jeremy Tan Date: Sun, 30 Jul 2017 11:42:26 +0800 Subject: [PATCH] parsettf.c: Fix buffer overflow condition when reading CFF top dictionary Closes #3087 --- fontforge/parsettf.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) Index: fontforge-20120731.b/fontforge/parsettf.c =================================================================== --- fontforge-20120731.b.orig/fontforge/parsettf.c +++ fontforge-20120731.b/fontforge/parsettf.c @@ -2773,6 +2773,15 @@ return( 3 ); pt = buffer; do { ch = getc(ttf); + // Space for at least 2 bytes is required + if ((pt-buffer) > (sizeof(buffer) - 2)) { + // The buffer is completely full; null-terminate truncate it + if ((pt-buffer) == sizeof(buffer)) { + pt--; + } + *pt++ = '\0'; + break; + } if ( pt>4); pt = addnibble(pt,ch&0xf); @@ -2996,7 +3005,7 @@ static struct topdicts *readcfftopdict(F /* Multiple master fonts can have Type2 operators here, particularly */ /* blend operators. We're ignoring that */ - while ( ftell(ttf) Last-Update: 2010-05-03 --- a/pyhook/loadfontforge.h +++ b/pyhook/loadfontforge.h @@ -11,7 +11,7 @@ if ( (lib = dlopen("libgunicode" SO_EXT,RTLD_LAZY))==NULL ) { #ifdef PREFIX - lib = dlopen( PREFIX "/lib/" "libgunicode" SO_EXT,RTLD_LAZY); + lib = dlopen( PREFIX "/lib/" "libgunicode.so.3.0.2", RTLD_LAZY); #endif } if ( lib==NULL ) { @@ -21,7 +21,7 @@ if ( (lib = dlopen("libgutils" SO_EXT,RTLD_LAZY))==NULL ) { #ifdef PREFIX - lib = dlopen( PREFIX "/lib/" "libgutils" SO_EXT,RTLD_LAZY); + lib = dlopen( PREFIX "/lib/" "libgutils.so.1.0.3", RTLD_LAZY); #endif } if ( lib==NULL ) { @@ -31,7 +31,7 @@ if ( (lib = dlopen("libfontforge" SO_EXT,RTLD_LAZY))==NULL ) { #ifdef PREFIX - lib = dlopen( PREFIX "/lib/" "libfontforge" SO_EXT,RTLD_LAZY); + lib = dlopen( PREFIX "/lib/" "libfontforge.so.1.0.0", RTLD_LAZY); #endif } if ( lib==NULL ) { debian/fontforge.xpm0000664000000000000000000000724312235244732011721 0ustar /* XPM */ static char *fontforge[] = { "32 32 95 2", " c None", ". c #BEBEBE", "+ c #0C0C0C", "@ c #4F4F4F", "# c #D4D4D4", "$ c #ABABAB", "% c #9F9F9F", "& c #B3B3B3", "* c #D3D3D3", "= c #D8D8D8", "- c #7E7E7E", "; c #585858", "> c #535353", ", c #828282", "' c #B9B9B9", ") c #8B8B8B", "! c #FFFFFF", "~ c #8F8F8F", "{ c #CFCFCF", "] c #B6B6B6", "^ c #7C7C7C", "/ c #555555", "( c #606060", "_ c #C9C9C9", ": c #868686", "< c #565656", "[ c #3C3C3C", "} c #272727", "| c #121212", "1 c #BBBBBB", "2 c #AFAFAF", "3 c #676767", "4 c #595959", "5 c #4A4A4A", "6 c #353535", "7 c #1F1F1F", "8 c #0E0E0E", "9 c #A5A5A5", "0 c #5D5D5D", "a c #616161", "b c #515151", "c c #414141", "d c #2D2D2D", "e c #191919", "f c #0D0D0D", "g c #454545", "h c #AAAAAA", "i c #9B9B9B", "j c #474747", "k c #424242", "l c #4C4C4C", "m c #393939", "n c #2C2C2C", "o c #1D1D1D", "p c #1E1E1E", "q c #161616", "r c #0F0F0F", "s c #131313", "t c #181818", "u c #1A1A1A", "v c #5F5F5F", "w c #383838", "x c #B5B5B5", "y c #1C1C1C", "z c #2A2A2A", "A c #373737", "B c #858585", "C c #C5C5C5", "D c #151515", "E c #111111", "F c #323232", "G c #3A3A3A", "H c #3B3B3B", "I c #636363", "J c #242424", "K c #2F2F2F", "L c #626262", "M c #737373", "N c #232323", "O c #282828", "P c #333333", "Q c #2E2E2E", "R c #2B2B2B", "S c #292929", "T c #363636", "U c #666666", "V c #212121", "W c #A0A0A0", "X c #252525", "Y c #6D6D6D", "Z c #727272", "` c #484848", " . c #C1C1C1", ".. c #979797", "+. c #ACACAC", " ", " ", " ", " . + @ ", " . + + + @ ", " + + + + + @ ", " @ + + + + + @ ", " . + + + + + + + ", " . + + + + + + + + . ", ". + + + + + @ + . ", "+ + + @ ", "+ @ # $ % & * ", " = $ - ; > > > > > ; , ' ", " . ) > ! ! > ! ! > > > > > > > ; ~ { ", " ] ^ / > > ! > > ! > > ! / > > > > > > > > ( ", " _ : < > > ! ! ! ! ! ! ! ! > > > > > > > > @ [ } | 1 ", " 2 3 > > > > > > ! > > ! > 4 > > > > > > 5 6 7 8 + + 5 ", " 9 0 > > > > > > > ! > ; ! > a > > > b c d e + + + f g h ", "i j k j l b > > > ! ! ! ! ! ! ! ! m n o 8 + + + + p ^ ", "0 q + + + + r s q t e t q | f + + + + + + + + u ~ ", " 2 v t + + + + + + + + + + + + + + + + f w ", " x 3 p + + + + + + + + + + r y z A B C ", " B e D | E E e 7 } F G H H H w A @ ", " I J J J J J K H H H H H H H H H H G L ", " M N J J J J O G H H H m P Q R z S S } R ", " A t y N J J T H w K O J J J J J J J J @ ", " U t t e V R T R J J J J J J J J J J b ", " W J t t X J J J J J J J J J n Y C ", " Z y V J J J J Q ` 3 ~ . ", " ..+.C ", " ", " "}; debian/make-clean-tarball0000775000000000000000000000100712235244732012534 0ustar #!/bin/sh # this should be run from the top-level directory (one above debian/) # so run it as: debian/make-clean-tarball vers=$(awk '/LibFF_VersionDate/{ print $3 }' fontforge/libffstamp.h) ## strip these files and directories from the produced archive: skiplist="admintools cidmap cidmapsrc debian fonttools gtkui htdocs mac-Resources Packaging Readme.VMS test" git archive --format=tar --prefix="fontforge-0.0.${vers}/" HEAD $(ls -1 | grep -vFx "${skiplist}" ) | gzip -n9 > ../fontforge_0.0.${vers}.orig.tar.gz debian/libgdraw4.install0000664000000000000000000000002612235244732012441 0ustar usr/lib/libgdraw.so.* debian/libfontforge-dev.dirs0000664000000000000000000000005012235244732013306 0ustar usr/include/fontforge usr/lib/pkgconfig debian/fontforge-common.manpages0000664000000000000000000000001612235244732014165 0ustar fontforge/*.1 debian/copyright0000664000000000000000000000413512235244732011132 0ustar This package was debianized by Baruch Even on Fri, 31 Aug 2001 22:51:17 +0300. Since 30 Mar 2006, it is maintained by Kęstutis Biliūnas helped by the Debian Fonts Task Force . It was downloaded from http://fontforge.sourceforge.net/ Upstream Author: George Williams Copyright © 2000-2010 by George Williams Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 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. The name of the author may not 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. The configure script is subject to the GNU General public license. Debian GNU/Linux users may find the full text of the GPL version 2 in /usr/share/common-licenses/GPL-2. The Debian packaging is © 2006-2010, Debian Fonts Task Force and is licensed under the GPL, see `/usr/share/common-licenses/GPL-2'. debian/rules0000775000000000000000000000352512235244732010261 0ustar #!/usr/bin/make -f # -*- makefile -*- #export DH_VERBOSE=1 export CONFIG_SHELL=/bin/bash export DEB_BUILD_MAINT_OPTIONS := hardening=+all,-pie CONFIG_OPTS = --prefix=/usr \ --libdir=\$${prefix}/lib \ --mandir=\$${prefix}/share/man \ --with-regular-link \ --enable-devicetables \ --enable-type3 \ --with-freetype-src=$(CURDIR)/freetype \ --with-freetype-bytecode DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) CROSS = --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) else CROSS = --build $(DEB_BUILD_GNU_TYPE) endif %: dh $@ --parallel --with autotools-dev,python2 override_dh_auto_configure: aclocal; autoconf; automake --add-missing; libtoolize --force --copy $(CURDIR)/configure $(CROSS) ${CONFIG_OPTS} --enable-pyextension override_dh_install: dh_install find $(CURDIR)/debian/libfontforge1/usr/lib -name "*.la" -delete -rm -rf $(CURDIR)/debian/libfontforge1/usr/lib/pkgconfig cp Packaging/fontforge.xml $(CURDIR)/debian/fontforge.sharedmimeinfo chrpath -d $(CURDIR)/debian/fontforge/usr/bin/fontforge touch @ nox: override_dh_install [ ! -f Makefile ] || $(MAKE) distclean $(CURDIR)/configure $(CROSS) ${CONFIG_OPTS} --without-x --disable-pyextension $(MAKE); $(MAKE) install prefix=$(CURDIR)/debian/nox/usr chrpath -d $(CURDIR)/debian/nox/usr/bin/fontforge mv $(CURDIR)/debian/nox/usr/bin/* $(CURDIR)/debian/fontforge-nox/usr/bin/ touch @ override_dh_strip: nox dh_strip --dbg-package=fontforge-dbg # deal with some lintian failure chmod 0644 $(CURDIR)/debian/lib*/usr/lib/lib*.so.* (cd $(CURDIR)/debian/python-fontforge/usr/lib; for i in python*; do mv $$i/site-packages $$i/dist-packages; done) debian/libfontforge1.install0000664000000000000000000000014112235244732013321 0ustar usr/lib/libgioftp.so.* usr/lib/libgunicode.so.* usr/lib/libfontforge.so.* usr/lib/libgutils.so.* debian/fontforge.menu0000664000000000000000000000037112235244732012054 0ustar ?package(fontforge):needs="X11" \ section="Applications/Graphics" \ title="FontForge" \ longtitle="Font Editor for PS, TrueType and OpenType fonts" \ command="/usr/bin/fontforge" \ hints="Fonts" \ icon="/usr/share/pixmaps/fontforge.xpm" debian/watch0000664000000000000000000000010212235244732010216 0ustar version=3 http://sf.net/fontforge/fontforge_full-(.*)\.tar\.bz2 debian/clean0000664000000000000000000000037012235244732010201 0ustar debian/fontforge.sharedmimeinfo debian/fontforge.desktop Unicode/.libs Unicode/Makefile.in gdraw/.libs gdraw/Makefile.in fontforge/Makefile.in gutils/Makefile.in fontforge/FontForge.pot Makefile.in aclocal.m4 ltmain.sh config.log configure.lineno debian/fontforge-nox.dirs0000664000000000000000000000001012235244732012641 0ustar usr/bin debian/fontforge.install0000664000000000000000000000010212235244732012546 0ustar usr/bin/* Packaging/fontforge.desktop usr/share/applications/ debian/fontforge-common.install0000664000000000000000000000014012235244732014036 0ustar usr/share/locale/* Packaging/icons/* usr/share/icons/ debian/fontforge.xpm usr/share/pixmaps/ debian/libfontforge1.dirs0000664000000000000000000000001012235244732012607 0ustar usr/lib debian/fontforge.dirs0000664000000000000000000000001012235244732012037 0ustar usr/bin debian/changelog0000664000000000000000000012202713151406475011054 0ustar fontforge (20120731.b-5ubuntu0.1) trusty-security; urgency=medium * SECURITY UPDATE: heap-based buffer over-read - debian/patches/CVE-2017-11568.patch: fix out of bounds read condition and buffer overflow in fontforge/parsettf.c, fontforge/psread.c, fontforge/tottf.c. - CVE-2017-11568 * SECURITY UPDATE: heap-based buffer over-read in readttfcopyrights - debian/patches/CVE-2017-11569-and-2017-11575.patch: fix out of bounds read condition in fontforge/parsettf.c. - CVE-2017-11569 - CVE-2017-11575 * SECURITY UPDATE: stack-based buffer overflow - debian/patches/CVE-2017-11571.patch: fix buffer overflow in fontforge/parsettf.c. - CVE-2017-11571 * SECURITY UPDATE: stack underflow condition in readcfftopdicts - debian/patches/CVE-2017-11572-and-2017-11576.patch: prevent stack uderflow condition in fontforge/parsettf.c. - CVE-2017-11572 - CVE-2017-11576 * SECURITY UPDATE: heap-based buffer overflow in readcffset - debian/patches/CVE-2017-11574.patch: fix buffer condition in fontforge/parsetff.c. - CVE-2017-11574 * SECURITY UPDATE: buffer over-read in getsid - debian/patches/CVE-2017-11577.patch: fix out of bounds read in fontforge/parsettf.c - CVE-2017-11577 -- Leonidas S. Barbosa Tue, 29 Aug 2017 21:55:41 -0300 fontforge (20120731.b-5) unstable; urgency=low * Make packages Multi-Arch: foreign. Thanks to Dimitri John Ledkov. Closes: #732743 * Update Standards to 3.9.5 (checked) -- Christian Perrier Wed, 01 Jan 2014 09:24:42 +0100 fontforge (20120731.b-4) unstable; urgency=low [ Matthias Klose ] * Merge patch from Ubuntu: - Fix build with --as-needed. -- Christian Perrier Sun, 03 Nov 2013 14:42:26 +0100 fontforge (20120731.b-3) unstable; urgency=low * debian/watch - remove unnecessary uversionmangle * debian/control - "Build-Depends: libtiff5-dev", since libtiff-dev introduces dependency to libtiff4 which is in oldlibs - use canonical URL for Vcs-* -- Hideki Yamane Tue, 25 Jun 2013 22:12:41 +0900 fontforge (20120731.b-2) unstable; urgency=low * upload to unstable -- Hideki Yamane Wed, 05 Jun 2013 15:22:03 +0900 fontforge (20120731.b-1) experimental; urgency=low * New upstream release (Closes: #684109) * debian/patches - 001_complete_libpng-dev_transition.diff, 005_x_www_browser.diff, 902_fix_optipng_reads.diff: merged upstream - open_file_with_drag_and_drop.patch: drop it, conflict with upstream * debian/fontforge-common.install: install icons -- Hideki Yamane Tue, 14 May 2013 10:52:39 +0900 fontforge (0.0.20120101+git-6) unstable; urgency=low * debian/rules - remove override_dh_python2, it'n unnecessary. -- Hideki Yamane Tue, 14 May 2013 10:27:38 +0900 fontforge (0.0.20120101+git-5) experimental; urgency=low * debian/rules - fix all lintian error and warnings + move python modules from site-packages to dist-packages manually (Closes: #705904) + chmod 0644 to *.so.* libraries - install missing nox binaries - don't build pyextention for -nox package to reduce build time * debian/*.install - don't conflict duplicate so within packages (Closes: #705857) -- Hideki Yamane Mon, 22 Apr 2013 22:36:29 +0900 fontforge (0.0.20120101+git-4) experimental; urgency=low * debian/control - build python modules for all supported versions (Closes: #575753) -- Hideki Yamane Sun, 21 Apr 2013 08:44:40 +0900 fontforge (0.0.20120101+git-3) experimental; urgency=low * Team upload. * debian/control - remove Kęstutis Biliūnas from Uploaders, thanks. (Closes: #704972) - add myself to Uploaders - use debhelper (>= 9) - set "Standards-Version: 3.9.4" - add "{Conflicts,Replaces}: libfontforge-dev (<< 0.0.20120101+git-3)" to libfontoforge1 since all .so files move to libfontoforge1 - set "Build-Depends: libtiff-dev" to make transition easier (Closes: #681538) Thanks to Michael Terry - remove obsolete "Dm-Upload-Allowed:" field - add "Breaks: defoma" to avoid broken obsolete defoma symlink cause segfault (Closes: #583546) - add fontforge-common package to reduce the duplication (Closes: #705574) - replace from "Conflicts: fontforge{,-nox}" to Breaks to ensure smooth upgrade * debian/patches - add open_file_with_drag_and_drop.patch. It is able to open files with Drag&Drop in launcher. * debian/rules - cleanup, use dh style. It brings concurrent build enable with --parallel (Closes: #705437) Also, it reduces build time. - enable "--with-freetype-bytecode" option by default (Closes: #688213, #672775) since related patent has expired. - explicitly specify "--with-freetype-src=freetype" to reduce search time (closes: #605871). However, should add freetype source to enable it and not do so since it's not sure at this time. * debian/*.{install,dirs},clean - use with dh * debian/compat - set 9 to enable hardening (without setting dpkg-buildflags) -- Hideki Yamane Thu, 28 Mar 2013 08:22:43 +0900 fontforge (0.0.20120101+git-2) unstable; urgency=low * Define SHELL in Makefiles. Thanks to Jakub Wilk for the patch Closes: #671971 -- Christian Perrier Tue, 15 May 2012 22:21:12 +0200 fontforge (0.0.20120101+git-1) unstable; urgency=low * new upstream snapshot release from git (Closes: #656443) * debian/patches: drop 001_Support-libpng-1.5-by-only-using-accessor-functions.diff and 905_fix_selection_crashes.diff (applied upstream) * Bump Standards-Version to 3.9.3 (no changes needed) * change B-D from libpng12-dev to libpng-dev (Closes: #662330) -- Daniel Kahn Gillmor Tue, 13 Mar 2012 21:59:30 -0400 fontforge (0.0.20110222-9) UNRELEASED; urgency=low * convert to git-based packaging -- Daniel Kahn Gillmor Mon, 06 Feb 2012 01:10:28 -0500 fontforge (0.0.20110222-8) unstable; urgency=low [ Daniel Kahn Gillmor ] * Fix memory corruption when moving spline points via upstream patch by Paul Flo Williams Closes: #656359 * ensure fontforge-dbg gets symbols from X11-capable fontforge Closes: #656498 -- Christian Perrier Wed, 01 Feb 2012 20:40:49 +0100 fontforge (0.0.20110222-7) unstable; urgency=low * Build using dh_python2. Patch from Ubuntu. -- Christian Perrier Sun, 08 Jan 2012 13:44:41 +0100 fontforge (0.0.20110222-6) unstable; urgency=low * Enable hardened build flags through dpkg-buildflags Closes: #653534 -- Christian Perrier Thu, 29 Dec 2011 08:21:59 +0100 fontforge (0.0.20110222-5) unstable; urgency=low * Team upload * Support libpng 1.5 by only using accessor functions to png structures Thanks to Paul Flo Williams for the patch Closes: #649950 -- Christian Perrier Wed, 14 Dec 2011 20:04:01 +0100 fontforge (0.0.20110222-4) unstable; urgency=low * If trans_alpha is NULL (likely due to optimized png), don't crash Closes: #646619 -- Christian Perrier Wed, 26 Oct 2011 04:22:18 +0200 fontforge (0.0.20110222-3) unstable; urgency=low * Add a versioned dependency on libfontforge1 for python-fontforge to avoid incompatible versions to be installed together. Closes: #642936 -- Christian Perrier Mon, 26 Sep 2011 07:44:25 +0200 fontforge (0.0.20110222-2) unstable; urgency=low * Build-Depends on libjpeg-dev instead of libjpeg62-dev. Closes: #633936 * Build-Depends on python-dev instead of python-all-dev Closes: #605838 * Add build-indep and build-arch build targets -- Christian Perrier Sat, 03 Sep 2011 11:00:05 +0200 fontforge (0.0.20110222-1) unstable; urgency=low * New upstream version. (Closes: #628111, #628839) - debian/patches + drop since merged to upstream - 030_fix_stack_corruption.diff - 031_fix_spline_creation.diff - 110_fix_incorrect_locale_code.diff - cve-2010-4259.patch * Set "Priority: extra" for fontforge-dbg -- Christian Perrier Sun, 05 Jun 2011 15:45:34 +0200 fontforge (0.0.20100501-6) unstable; urgency=low * Team upload. * debian/rules - fix wrong configure option (Closes: #625564) - "Getting rid of unneeded *.la / emptying dependency_libs", not install *.la files. Thanks to Neil Williams (Closes: #621285) - specify "CONFIG_SHELL=/bin/bash" to avoid FTBFS (Closes: #621932) * debian/patches - add 901_ld_as_needed.diff to fix build failure with ld --as-needed. Thanks to Matthias Klose (Closes: #605839) - drop 023_fix_desktop_file.diff (Closes: #608432) * debian/control - add debug package for fontforge (Closes: #602069) - bump up "Standards-Version: 3.9.2" -- Hideki Yamane Sat, 28 May 2011 21:24:48 +0900 fontforge (0.0.20100501-5) unstable; urgency=low * Team upload. * debian/rules - disable "--enable-double" that introduced in 0.0.20100501-3 to avoid building ttf-dejavu failure (Closes: #609094) -- Hideki Yamane Fri, 07 Jan 2011 23:43:28 +0900 fontforge (0.0.20100501-4) unstable; urgency=high * Urgency high due to a security fix. * debian/patches: + grab patch from https://bugzilla.redhat.com/attachment.cgi?id=464658 Fixes: CVE-2010-4259, Closes: #605537. -- Rogério Brito Tue, 07 Dec 2010 04:12:04 -0200 fontforge (0.0.20100501-3) unstable; urgency=low * debian/patches: - fixed the patch 030_fix_stack_corruption.diff. Buffer size reduced to the size recommended by upstream. - added the patch 031_fix_spline_creation.diff resolve problem of compiling lilypond on s390 architecure.. (Closes: #594629). * debian/rules: added the option --enable-double in the fontforge configure stage for decrease endless problems in the intersection code case. -- Kęstutis Biliūnas Sun, 28 Nov 2010 17:11:27 +0200 fontforge (0.0.20100501-2) unstable; urgency=low * Team upload * Fix stack corruption in fontforge/svg.c Closes: #550120 -- Christian Perrier Sun, 26 Sep 2010 16:06:26 +0200 fontforge (0.0.20100501-1) unstable; urgency=high * New upstream release (Closes: #590844, #591135, #591136). [ Rogério Brito ] * debian/patches: - removed the patch 026_fix-null-pntr-dereference.diff. Fixed upstream; - added the patch 110_fix_incorrect_locale_code.diff correct locale code. [ Kęstutis Biliūnas ] * debian/patches: - fixed the patch 005_x_www_browser.diff to give priority to the user settings over system-wide settings. Thanks to Andreas Neudecker for the bug report (Closes: #587844); - added the patch 027_catch_ctrl-c_signal.diff for catching the ctrl-c signal and asking the user whether he really wants to exit (Closes: #578122). * debian/control: - aded Rogério Brito to Uploaders; - bumped Standards-Version to 3.9.1. No changes required. -- Kęstutis Biliūnas Sat, 07 Aug 2010 11:33:59 +0300 fontforge (0.0.20090923-2) unstable; urgency=low * Switched to 3.0 (quilt) source format. As a consequence, no longer build-depend on quilt and removed the file README.source. * debian/control: - add ${misc:Depends} to dependencies to properly cope with debhelper-triggerred dependencies; - bumped Standards-Version to 3.8.4. No changes required. * debian/patches: added the patch 026_fix-null-pntr-dereference.diff for allowing the dereference of the 'cs' pointer in the scstyles.c file if it is non-NUL. Thanks to Rogério Brito for the patch (Closes: #569548). -- Kęstutis Biliūnas Sat, 27 Feb 2010 10:18:58 +0200 fontforge (0.0.20090923-1) unstable; urgency=low * New upstream release. -- Kęstutis Biliūnas Sat, 26 Sep 2009 21:41:19 +0300 fontforge (0.0.20090914-1) unstable; urgency=low * New upstream release. * debian/control: - bumped Standards-Version to 3.8.3. No changes required; - changed short and long descriptions (Closes: #537564). [ Davide Viti ] * debian/watch: workaround broken Sourceforge redirector. -- Kęstutis Biliūnas Wed, 16 Sep 2009 08:50:52 +0300 fontforge (0.0.20090622-1) unstable; urgency=low * New upstream release. * debian/patches: removed the patch 025_bcunlink.diff -- fixed upstream. * debian/rules: removed the call of deprecated dh_desktop. * debian/control: bumped Standards-Version to 3.8.2. No changes required. -- Kęstutis Biliūnas Tue, 23 Jun 2009 22:29:54 +0300 fontforge (0.0.20090408-2) unstable; urgency=low * debian/patches: - added the patch 024_def_background.diff for set the default background color. Thanks to Theppitak Karoonboonyanan for the patch (Closes: #525510); - added the patch 025_bcunlink.diff for fixing segfaults building ttf-cjk-compact. Thanks to Daniel Schepler for the bug report (Closes: #527807). -- Kęstutis Biliūnas Tue, 12 May 2009 00:25:19 +0300 fontforge (0.0.20090408-1) unstable; urgency=low * New upstream release. * debian/rules: - Call chrpath to strip the rpath on /usr/bin. * debian/control: - added chrpath to Build-Depends; - changed section to the new fonts section; - added Depends on libgdraw4 for the fontforge binary package; - bumped Standards-Version to 3.8.1. No changes required. -- Kęstutis Biliūnas Sat, 11 Apr 2009 23:42:31 +0300 fontforge (0.0.20090224-2) experimental; urgency=low * debian/control: added the dependency on libgdraw4 for libfontforge-dev binary package. -- Kęstutis Biliūnas Sun, 01 Mar 2009 18:53:02 +0200 fontforge (0.0.20090224-1) experimental; urgency=low [ Kęstutis Biliūnas ] * New upstream release (Closes: #496048, #500543, #504440, #393487). Actually the latter bug was fixed much earlier, but was forgotten to close. * First release from the pristine upstream tarball. Previously, the binary packages was generated from the ourselves made tarball, which was assembled from the several upstream tarballs. Now this is splited out into a separate source packages. * Added MIME support: updated the .desktop file with MimeType entries and added .sharedmimeinfo file (Closes: #507427, #507428). * Removed the file debian/fontforge.desktop. Now we are using the file Packaging/fontforge.desktop from the upstream. * debian/control: - bumped Standards-Version to 3.8.0. No changes required; - added the new libfontforge1, libgdraw4, libfontforge-dev and fontforge-nox binary packages. - added Build-Depends on libpango1.0-dev and libcairo2-dev. - added the python-fontforge package to Suggests for fontforge binary package. - added DM-Upload-Allowed: yes. * debian/rules: - added the option --enable-devicetables and --with-type3 in the fontforge configure stage. - added a case check to check if the package is going to be built on Ubuntu or Debian. Thanks to Arne Götje for suggestion. - added a comparison of the installed libtool version and the libtoolize option "--install", when libtool version is > 1.9b. * debian/patches: - the patches refreshed with quilt option '-p1'. This should make the package work with the new source package format "3.0 (quilt)". (closes: #485247). Thanks to Raphael Hertzog for the bug report. - disabled patch 999_disable_xinput.diff as this makes fontforge unusable when XMODIFIERS is defined, which is needed for many East Asian languages. Thanks to Arne Götje for suggestion. - added the patch 023_fix_desktop_file for adjusting the desktop file for Debian. - the patch 020_fix_pyext_path.diff adjusted for the new library path (Closes: #504705). - fixed the patch 900_debian_HelpDir_path.diff. * Removed the file debian/README and added the debian/README.source file explaining how to edit or create the patches. -- Kęstutis Biliūnas Thu, 26 Feb 2009 18:42:00 +0200 fontforge (0.0.20080429-1) unstable; urgency=low * New upstream release (Closes: #483001). * debian/patches: remove patch 022_validate.diff now included upstream * patches/900_debian_HelpDir_path.diff adapted to new sources -- Davide Viti Thu, 29 May 2008 09:54:53 +0200 fontforge (0.0.20080330-2) unstable; urgency=low [ Kęstutis Biliūnas ] * debian/patches: added the patch 022_validate.diff for fixing validation for CID keyed fonts (Closes: #477947). -- Davide Viti Thu, 01 May 2008 15:13:51 +0200 fontforge (0.0.20080330-1) unstable; urgency=low [Davide Viti] * New upstream release (Closes: #472772). * Updated version of showttf.c [ Kęstutis Biliūnas ] * debian/fontforge-doc.linda-override: removed this file, since linda no longer exists in the unstable distribution, and removed corresponding statements in the debian/rules install target. * debian/fontforge-doc.doc-base: an entry in the Section field changed from X11 to Graphics debian/rules install target. -- Davide Viti Tue, 01 Apr 2008 13:42:53 +0200 fontforge (0.0.20080203-1) unstable; urgency=low * New upstream release (Closes: #465829). [ Kęstutis Biliūnas ] * debian/control: - bumped Standards-Version to 3.7.3. No changes required. - set the pkg-fonts team as Maintainer. * debian/patches: - fixed the patches 020_fix_pyext_path.diff and 900_debian_HelpDir_path.diff. - removed the patch 021_libspiro_link.diff -- fixed upstream. * debian/rules: - in the install target removed the /usr/include directory. [ Christian Perrier ] * debian/copyright: - [Lintian] use the Unicode copyright symbol in copyright. Adapt copyright years. -- Christian Perrier Wed, 20 Feb 2008 05:48:34 +0100 fontforge (0.0.20071110-1) unstable; urgency=low * New upstream release (Closes: #452487, #452754). * debian/control: - added Build-Depends on libspiro-dev for compiling with the Spiro curves support. - added Vcs-Svn and Vcs-Browser fields. * debian/patches: - removed the patch 006_Fix_home_dir.diff -- fixed upstream. - added the patch 021_libspiro_link.diff for fixing compilation with Spiro curves support and option --with-regular-link. -- Kęstutis Biliūnas Sat, 10 Nov 2007 19:50:02 +0200 fontforge (0.0.20071002-1) unstable; urgency=low * New upstream release (Closes: #446961). * debian/control: - the homepage address removed from extended package description and added Homepage field in the source package. - added the new python-fontforge binary package. - added Build-Depends on python-support package. * debian/rules: - added the option --enable-pyextension in the fontforge configure stage. - added 'python setup.py install' in the install-arch target for installing python extensions. * debian/patches: - the patch 006_Fix_home_dir.diff replaced by patch from the upstream. - added the patch 020_fix_pyext_path.diff for fixing the path where the python modules searches fontforge libs. -- Kęstutis Biliūnas Sun, 14 Oct 2007 10:29:20 +0300 fontforge (0.0.20070831-2) unstable; urgency=low * debian/rules: the command 'aclocal-1.7' changed to 'aclocal' in the configure target (Closes: #441910). -- Kęstutis Biliūnas Tue, 11 Sep 2007 23:58:27 +0300 fontforge (0.0.20070831-1) unstable; urgency=low * New upstream release (Closes: #441771). * debian/patches: - removed the patches 014_fix_gdraw_gio.diff, 015_fix_mensis_ucs4.diff, 016_badnames.diff and 017_nonbmpcrash.diff -- fixed upstream. - added the patch 019_mensis_hntx.diff for convert to 4byte unichar_t. - the patch 005_x_www_browser.diff supplemented for 'mensis'. * debian/control: changed Build-Depends from automake1.7 to automake. * debian/rules: re-organized using of the quilt. Refused from the targets prepare, patch and unpatch, and included the file quilt.make instead. The file debian/README is simplified accordingly. -- Kęstutis Biliūnas Mon, 03 Sep 2007 10:54:36 +0300 fontforge (0.0.20070607-4) unstable; urgency=low [ Paul Wise ] * debian/menu: update for menu transition. [ Kęstutis Biliūnas ] * debian/patches: added the patch 017_nonbmpcrash.diff from Eugeniy Meshcheryakov and the upstream author George Williams -- for fixing segfaults during scrolling of the main window (Closes: #432762). -- Kęstutis Biliūnas Fri, 13 Jul 2007 00:24:19 +0300 fontforge (0.0.20070607-3) unstable; urgency=low * debian/control: - added "Replaces: fontforge (<< 0.0.20061220-2)" for fixing file overwrite problem on upgrade from pre 0.0.20061220-1 for better support of derivative distributions. - removed "Conflicts: pfaedit (<< 0.0.20040425)". * debian/rules: now compiled and installed with option 'libdir=/usr/lib/fontforge', so private libraries are moved from /usr/lib to /usr/lib/fontforge. * Removed fontforge.{lintian,linda}-override files. -- Kęstutis Biliūnas Tue, 26 Jun 2007 23:26:53 +0300 fontforge (0.0.20070607-2) unstable; urgency=low * debian/fontforge.lintian-override: removed the lintian override for the warning "package-name-doesnt-match-sonames" by suggestion of Christian Perrier . -- Kęstutis Biliūnas Wed, 13 Jun 2007 10:07:32 +0300 fontforge (0.0.20070607-1) unstable; urgency=low * New upstream release. * debian/patches: - removed the patch 012_fix_ff_manpage.diff -- applied by upstream. - removed the patch 013_fix_plugin.diif -- fixed upstream. - removed the patch 1000_fix_reallocs.diff -- applied by upstream. - added the patch 008_libgif.diff -- from the Ubuntu package by Matthias Klose . - added the patch 014_fix_gdraw_gio.diff - from upstream author George Williams . - added the patch 015_fix_mensis_ucs4.diff -- for fixing the problem arisen after was changed from using UCS2 to using UCS4 in fontforge. - added the patch 016_badnames.diff - from upstream author George Williams . -- Kęstutis Biliūnas Fri, 08 Jun 2007 07:12:44 +0300 fontforge (0.0.20070501-2) unstable; urgency=low * debian/patches: added patch 1000_fix_reallocs.diff for fixing lookups allocating on the 64-bit architectures. Thanks to Eugeniy Meshcheryakov . (Closes: #422901). -- Kęstutis Biliūnas Wed, 09 May 2007 12:00:28 +0300 fontforge (0.0.20070501-1) unstable; urgency=low * New upstream release (Closes: #422135). * debian/patches: - removed the patches 001_gdraw.diff and 002_fontforge.diff. - added the patch 012_fix_ff_manpage.diff for fixing some typos in the FF manpage. Thanks to Reuben Thomas (Closes: #421258). - added the patch 013_fix_plugin.diif from the upstream author George Williams , for fixing compiliation with python scripting support. * debian/control: added Build-Depends on python-all-dev for compiling with python scripting support. * debian/rules: added the htdocs/flags directory installation in the target install-indep. -- Kęstutis Biliūnas Thu, 03 May 2007 01:03:04 +0300 fontforge (0.0.20070324-1) experimental; urgency=low * New upstream (experimental) release. * debian/patches: added the temporary patches 001_gdraw.diff and 002_fontforge.diff from the current upstream CVS tree. -- Kęstutis Biliūnas Wed, 11 Apr 2007 23:01:56 +0300 fontforge (0.0.20070312-1) unstable; urgency=low * New upstream release: - added possibility to turn off the splash screen from the preference dialog (Closes: #412898). - fixed typos in the man page fontforge.1 (Closes: #412897, #413180). * debian/patches: removed the patch 010_libgif.diff - this change already is in upstream source. * debian/control: - improved the fontforge package description (Closes: #413224). Thanks to Reuben Thomas . - added 'Section: graphics' in the first stanza of the control file. -- Kęstutis Biliūnas Mon, 26 Mar 2007 23:27:14 +0300 fontforge (0.0.20061220-2) experimental; urgency=low * debian/rules: abolished the manpage showttf.1 including into fontforge-doc binary package (Closes: #406639). * Fixed debian/watch file. * debian/rules: restored back the option --with-regular-link in the configure stage because of the Matthias Klose request. * debian/patches: added patch 010_libgif.diff from the upstream author George Williams . * debian/control: removed the field Recommends, because now these all libs get into Depends. * Fixed the file debian/fontforge.linda-override. -- Kęstutis Biliūnas Fri, 12 Jan 2007 19:49:20 +0200 fontforge (0.0.20061220-1) experimental; urgency=low * New upstream release. * Added the fonttools utility - showttf (see: #300111). Also added the man page for this program. * debian/control: enlarged the fontforge package description - mentioned other programs and utilities included in this package. * debian/patches: - removed the patches 000_fix_exec_prefix.diff and patch 009_fix_SVG_output_quotes.diff -- applied by upstream. -- Kęstutis Biliūnas Sat, 23 Dec 2006 14:12:58 +0200 fontforge (0.0.20061019-1) unstable; urgency=low * New upstream release (Closes: #394675). * debian/patches: - removed the patch 008_nohomedir.diff -- fixed upstream. - added patch 009_fix_SVG_output_quotes.diff for fixing missing quotes in SVG output (Closes: #392688). Thanks to Wojciech Muła . * debian/control: added the version number to Recommends for libuninameslist0 package. -- Kęstutis Biliūnas Mon, 23 Oct 2006 15:24:15 +0300 fontforge (0.0.20060822-2) unstable; urgency=low * debian/patches: - added patch 008_nohomedir.diff for fixing the segfaults when home directory doesn't exist or is non-writable (Closes: #387451). - fixed line numbers for the patches 006_Fix_home_dir.diff and 900_debian_HelpDir_path.diff. -- Kęstutis Biliūnas Fri, 15 Sep 2006 08:54:00 +0300 fontforge (0.0.20060822-1) unstable; urgency=low * New upstream release. Fixes the following bugs: - nonresizable context menu. Closes: #251923. * debian/ffanvil32.xpm: made background of this icon transparent. Thanks to Pascal de Bruijn for suggestion. -- Kęstutis Biliūnas Sat, 2 Sep 2006 23:10:03 +0300 fontforge (0.0.20060703.1-1) unstable; urgency=low * New upstream release: added new HTML documentation. * debian/rules: added making the FontForge.pot file to the target build-arch because of the Matthias Klose request. -- Kęstutis Biliūnas Mon, 17 Jul 2006 10:28:30 +0300 fontforge (0.0.20060703-1) unstable; urgency=low * New upstream release. * Ack previous NMU (Closes: #335263, #362123) * debian/control: - removed the field "Section: x11" from the source package part, and added the field "Section: graphics" to the fontforge binary package. - bumped Standards-Version to 3.7.2. No changes required. -- Kęstutis Biliūnas Thu, 13 Jul 2006 22:20:30 +0300 fontforge (0.0.20060430-1) unstable; urgency=low * New maintainer (Closes: #357867). * New upstream release (Closes: #328217, #316892, #361107, #365103). * Removed libuninameslist_src-*.tgz from the tarball, because this source not carry any sense here. * debian/compat: use DH_COMPAT 5 * debian/rules: - re-organized debian/patches for using quilt. - added DEB_BUILD_OPTIONS=noopt (Closes: #361289). - removed the option --with-regular-link from configure stage. - use 'make -C ' and 'set -e' instead of the brackets. Thanks to Matthias Klose for the suggestion (Closes: #362300). * debian/control: - changed Build-Depends on debhelper (>= 5.0.0). - bumped Standards-Version to 3.7.0. No changes required. - changed Build-Depends from libpng3-dev to libpng12-dev, because libpng3-dev is going away. - added Build-Depends on libxml2-dev for parse SVG files and fonts. - changed Build-Depends from xlibs-dev to libxt-dev (Closes: #344124). - the libraries libfreetype6, libjpeg62, libpng12-0, libtiff4, libungif4g, libuninameslist0, libxml2 and zlib1g added to Recommends. - changed the fontforge-doc package description (Closes: #336056). - added Build-Depends on libuninameslist-dev for displaying Unicode Name Annotations. - added homepage URL to fontforge package description. - removed pfaedit, a migration package for FontForge. - switch from using patch to quilt. - changed section for fontforge-doc package to docs. * Documented how to use the quilt in debian/README. * debian/patches: - fixed the patch 005_x_www_browser.diff. Thanks to Daniel Kahn Gillmor for the patch (Closes: #333548). - removed the patches 001_fix_gdraw.diff, 002_fix_gdraw_part_2.diff and 004_kill_rpatch_on_binaries.diff. Unnecessary any more. - added patch 900_debian_HelpDir_path.diff for fixing the path to ../doc/fontforge/html/ files. * Fixed debian/watch file. Thanks to Daniel Kahn Gillmor for the patch (Closes: #342180). * debian/copyright: more complete copyright file. * Added the icon file debian/ffanvil32.xpm and changed the menu entries in debian/menu file. Added the menu entry for the Mensis program. * Add desktop file (Closes: #362315). * Added and installed files: fontforge.lintian-override, fontforge.linda-override and fontforge-doc.linda-override. -- Kęstutis Biliūnas Mon, 1 May 2006 10:25:00 +0300 fontforge (0.0.20051205-0.2) unstable; urgency=low * Non-maintainer upload. * Refresh debian/fontforge-patches/* to fix FTBFS. (Closes: 362123) * Update debian/rules to fail if patches are unable to apply cleanly. -- James Vega Sun, 23 Apr 2006 23:53:29 -0400 fontforge (0.0.20051205-0.1) unstable; urgency=low * Non-maintainer upload to allow new fonts to enter Debian * New upstream release. Closes: #335263 -- Christian Perrier Sun, 18 Dec 2005 12:27:44 +0100 fontforge (0.0.20050911-1) unstable; urgency=low * New upstream release. (Closes: #319159, #326788) -- Chanop Silpa-Anan Mon, 12 Sep 2005 13:33:11 +1000 fontforge (0.0.20050904-1) unstable; urgency=low * New upstream release. -- Chanop Silpa-Anan Wed, 7 Sep 2005 17:05:50 +1000 fontforge (0.0.20050831-2) unstable; urgency=low * Add bzip2 to Build-Depends (Closes: #326225) -- Chanop Silpa-Anan Sat, 3 Sep 2005 19:05:56 +1000 fontforge (0.0.20050831-1) unstable; urgency=low * New upstream release; I just submitted my thesis, BTW. (Closes: #319159, #325325) -- Chanop Silpa-Anan Fri, 2 Sep 2005 16:39:30 +1000 fontforge (0.0.20050502-1) unstable; urgency=low * New upstream release. (Closes: #289316) -- Chanop Silpa-Anan Fri, 6 May 2005 21:18:48 +1000 fontforge (0.0.20041218-0.1) unstable; urgency=high * NMU * New upstream release - cures segfault processing certain fonts (Closes: #285784) * Also fixes FTBFS of lilypond, thus urgency high -- Bastian Kleineidam Tue, 28 Dec 2004 13:57:53 +0100 fontforge (0.0.20041012-1) unstable; urgency=low * New upstream release. -- Chanop Silpa-Anan Wed, 13 Oct 2004 21:37:13 +1000 fontforge (0.0.20040930-1) unstable; urgency=low * New upstream release. -- Chanop Silpa-Anan Sat, 2 Oct 2004 23:39:56 +1000 fontforge (0.0.20040824-1) unstable; urgency=low * New upstream release. -- Chanop Silpa-Anan Wed, 1 Sep 2004 15:48:29 +1000 fontforge (0.0.20040808-1) unstable; urgency=low * New upstream release. -- Chanop Silpa-Anan Mon, 16 Aug 2004 17:37:30 +1000 fontforge (0.0.20040703-2) unstable; urgency=low * Recompile with libtiff4g. -- Chanop Silpa-Anan Thu, 29 Jul 2004 18:30:12 +1000 fontforge (0.0.20040703-1) unstable; urgency=low * New July release. * New libuninamelist-040701. -- Chanop Silpa-Anan Sun, 4 Jul 2004 19:21:14 +1000 fontforge (0.0.20040618-1) unstable; urgency=low * New upstream release. * Bundle mensis with fontforge for the moment. -- Chanop Silpa-Anan Sun, 27 Jun 2004 15:05:57 +1000 fontforge (0.0.20040601-1) unstable; urgency=low * New June release. * Remove patch to fix internal nan error -- fixed upstream. -- Chanop Silpa-Anan Thu, 3 Jun 2004 18:11:12 +1000 fontforge (0.0.20040529-1) unstable; urgency=low * New upstream release. * Apply patch to fix internal nan error. (closes: # 251199) -- Chanop Silpa-Anan Tue, 1 Jun 2004 17:03:46 +1000 fontforge (0.0.20040523-1) unstable; urgency=low * New upstream release. Forforge has entered testing, finally. -- Chanop Silpa-Anan Mon, 24 May 2004 15:33:19 +1000 fontforge (0.0.20040509-1) unstable; urgency=low * New upstream release. -- Chanop Silpa-Anan Mon, 10 May 2004 17:19:20 +1000 fontforge (0.0.20040502-1) unstable; urgency=low * New upstream release. -- Chanop Silpa-Anan Tue, 4 May 2004 21:42:19 +1000 fontforge (0.0.20040425-1) unstable; urgency=low * New upstream release. * Downgrade fontforge-doc to Suggests. (closes: #245484) * Add potrace to Suggests besides autotrace. * Add pfaedit migration package. * Fix Suggests list. -- Chanop Silpa-Anan Mon, 26 Apr 2004 23:58:16 +1000 fontforge (0.0.20040418-1) unstable; urgency=low * New upstream release. -- Chanop Silpa-Anan Tue, 20 Apr 2004 15:12:47 +1000 fontforge (0.0.20040410.1-1) unstable; urgency=low * New maintainer. (closes: #195675) * Properly handle the /etc/alternatives/x-www-browsers. * Add the missing the CID maps. * Use ~/.FontForge for personal perferences. * Fix a bad upload. -- Chanop Silpa-Anan Fri, 16 Apr 2004 23:29:58 +1000 fontforge (0.0.20040410-1) unstable; urgency=low * New upstream version. (closes: #243719) * Make a separated documentation package. (closes: #233432) -- Chanop Silpa-Anan Fri, 16 Apr 2004 20:27:14 +1000 pfaedit (0.0.20040111-1) unstable; urgency=low * New upstream version. (closes: #226123) * debian/copyright: Fix for type in pfaedit sourceforge URL. (closes: #226132) -- Peter Hawkins Mon, 19 Jan 2004 09:54:28 +1100 pfaedit (0.0.20031110-1) unstable; urgency=low * New upstream version. * Added libuninameslist to build (closes: #188562) -- Peter Hawkins Fri, 14 Nov 2003 14:38:54 +1100 pfaedit (0.0.20031020-3) unstable; urgency=low * debian/control, debian/rules: Add libtoolize invocation to update the libtool version for ARM (closes: #217238) -- Peter Hawkins Fri, 24 Oct 2003 09:32:19 +1000 pfaedit (0.0.20031020-2) unstable; urgency=low * Second upload in a short time period because I failed to see a couple of easily fixed bugs sitting in the bug page, including one RC bug. * debian/rules: Added quotes around usage of CFLAGS (closes: #198221) * debian/patches/00[34]*: Link libgdraw against libgunicode so libgunicode is completely linked. (closes: #195978) -- Peter Hawkins Thu, 23 Oct 2003 20:25:28 +1000 pfaedit (0.0.20031020-1) unstable; urgency=low * New upstream version. * debian/control: New maintainer - Peter Hawkins * debian/control: Updated standards version to 3.6.1 -- Peter Hawkins Thu, 23 Oct 2003 19:21:42 +1000 pfaedit (0.0.20030313-2) unstable; urgency=low * Update config.sub and config.guess to fix build failure on mipsel. -- Peter Hawkins Fri, 21 Mar 2003 12:27:15 +1100 pfaedit (0.0.20030313-1) unstable; urgency=low * New upstream version (closes: #174411, #183493) * The libpng breakage seems fixed. Please reopen this bug if you still experience this problem. (closes: #181249) * Updated Standards Version to 3.5.9. * Package hacked upon and rejigged by Peter Hawkins. -- Peter Hawkins Sun, 2 Mar 2003 15:33:47 +1100 pfaedit (0.0.20020905-1) unstable; urgency=low * New upstream version * Changed to use libpng3 instead of libpng2 -- Baruch Even Thu, 5 Sep 2002 08:13:28 +0300 pfaedit (0.0.20020618-1) unstable; urgency=low * New upstream version -- Baruch Even Tue, 18 Jun 2002 22:23:30 +0300 pfaedit (0.0.20020416-1) unstable; urgency=low * New upstream version + Added support for Arabic forms in GSUB table + Fix problems under KDE desktop * Remove recommendation on libtiff3 which doesn't exists -- Baruch Even Fri, 26 Apr 2002 17:33:59 +0300 pfaedit (0.0.20020312-1) unstable; urgency=low * New upstream version (Closes: bug#139183) + Fixed EPS reading problems + Improved scripting abilities - Generate PFM file - Merge Kerning Info - Remove all Kerning + Added sfddiff, a diff between two SFD fonts (pfaedit native format) + Improved handling of 8bit colormaps * Upgrading also fixed two crashing problems (Closes: bug#138944, #138765) -- Baruch Even Thu, 23 Mar 2002 01:09:00 +0200 pfaedit (0.0.20020210-1) unstable; urgency=low * New upstream version + Fix crash when generating postscript from arial.ttf + Changes to bitmap dialogs to allow more control over dpi + Use freetype to generate bitmaps + Added a scripting abilities + Load the help documents locally instead of going to the homepage + Fix a bug that caused to be used as the help browser, not it *does* check for the existence of the browser. * Actually make use of the loading of help documents locally. -- Baruch Even Sun, 10 Feb 2002 12:03:26 +0200 pfaedit (0.0.20020206-1) unstable; urgency=low * New upstream version -- Baruch Even Wed, 6 Feb 2002 01:53:10 +0200 pfaedit (0.0.20020102-1) unstable; urgency=low * New upstream version -- Baruch Even Sat, 5 Jan 2002 00:25:54 +0200 pfaedit (0.0.20011115-1) unstable; urgency=low * New upstream version. -- Baruch Even Wed, 21 Nov 2001 00:18:27 +0200 pfaedit (0.0.20011011-2) unstable; urgency=low * Documentation was placed in /usr/share/doc/pfaedit/html/htdocs and should be one directory upwards. * Removed upstream ChangeLog file since it's empty. * Removed upstream README file since it only contains install info. -- Baruch Even Sun, 14 Oct 2001 10:41:11 +0200 pfaedit (0.0.20011011-1) unstable; urgency=low * Updated config.{guess,sub} files (Closes: Bug#115016) * Fixed bug when loading BDF files with more than 256 characters. (Closes: Bug#115212) * Added CID maps for CJK support (Closes: Bug#114952) -- Baruch Even Sat, 13 Oct 2001 21:38:10 +0200 pfaedit (0.0.20010925-1) unstable; urgency=low * Updated the HTML docs, upstream author had some copyrighted material in them. -- Baruch Even Wed, 26 Sep 2001 14:16:51 +0200 pfaedit (0.0.20010924-1) unstable; urgency=low * New upstream version. * Added HTML docs. -- Baruch Even Wed, 26 Sep 2001 03:09:46 +0200 pfaedit (0.0.20010908-2) unstable; urgency=low * Fix a wrong dependency on libungif4 instead of libungif4g. * Changed the image libraries from suggests to recommends. -- Baruch Even Wed, 12 Sep 2001 00:01:01 +0300 pfaedit (0.0.20010908-1) unstable; urgency=low * Upstream version update. -- Baruch Even Sun, 9 Sep 2001 15:11:47 +0300 pfaedit (0.0.20010905-1) unstable; urgency=low * Initial Release. * Closes wnpp bug. (Closes: Bug#99904) -- Baruch Even Fri, 31 Aug 2001 22:51:17 +0300 debian/control0000664000000000000000000001411613151406504010575 0ustar Source: fontforge Section: fonts Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Fonts Task Force Uploaders: Christian Perrier , Davide Viti , Rogério Brito , Hideki Yamane , Daniel Kahn Gillmor XS-Python-Version: all Build-Depends: debhelper (>= 9), autotools-dev, libjpeg-dev, libtiff5-dev, libpng-dev, libgif-dev, libxt-dev, libfreetype6-dev, autoconf, automake, libtool (>= 1.9), bzip2, libxml2-dev, libuninameslist-dev, libspiro-dev, python-dev (>= 2.6.6-3~), libpango1.0-dev, libcairo2-dev, chrpath Standards-Version: 3.9.5 Homepage: http://fontforge.sourceforge.net/ Vcs-Git: git://anonscm.debian.org/pkg-fonts/fontforge/ Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-fonts/fontforge.git;a=summary Package: fontforge Architecture: any Multi-Arch: foreign Depends: ${misc:Depends}, fontforge-common (= ${source:Version}), libfontforge1 (= ${binary:Version}), libgdraw4 (= ${binary:Version}), ${shlibs:Depends} Conflicts: fontforge-nox, defoma Suggests: fontforge-doc, potrace, autotrace, python-fontforge, fontforge-extras Description: font editor Besides being a font editor, FontForge is also a font format converter, and can convert among PostScript (ASCII & binary Type 1, some Type 3s, some Type 0s), TrueType, and OpenType (Type2), CID-keyed, SVG, CFF and multiple-master fonts. . This package also provides these programs and utilities: fontimage - produce a font thumbnail image; fontlint - checks the font for certain common errors; sfddiff - compare two font files. Package: fontforge-nox Architecture: any Multi-Arch: foreign Depends: ${misc:Depends}, fontforge-common (= ${source:Version}), libfontforge1 (= ${binary:Version}), ${shlibs:Depends} Conflicts: fontforge, defoma Description: font editor - non-X version Besides being a font editor, FontForge is also a font format converter, and can convert among PostScript (ASCII & binary Type 1, some Type 3s, some Type 0s), TrueType, and OpenType (Type2), CID-keyed, SVG, CFF and multiple-master fonts. . This package also provides these programs and utilities: fontimage - produce a font thumbnail image; fontlint - checks the font for certain common errors; sfddiff - compare two font files. . This package contains a version of FontForge compiled with support for scripting but no GUI, and not require the graphics library. Package: fontforge-common Architecture: all Depends: ${misc:Depends} Breaks: fontforge (<< 0.0.20120101+git-3), fontforge-nox (<< 0.0.20120101+git-3) Description: font editor (common files) Besides being a font editor, FontForge is also a font format converter, and can convert among PostScript (ASCII & binary Type 1, some Type 3s, some Type 0s), TrueType, and OpenType (Type2), CID-keyed, SVG, CFF and multiple-master fonts. . This package contains common arch-independent files. Package: libfontforge-dev Section: libdevel Architecture: any Depends: ${misc:Depends}, libfontforge1 (= ${binary:Version}), libgdraw4 (= ${binary:Version}) Description: font editor - runtime library (development files) Besides being a font editor, FontForge is also a font format converter, and can convert among PostScript (ASCII & binary Type 1, some Type 3s, some Type 0s), TrueType, and OpenType (Type2), CID-keyed, SVG, CFF and multiple-master fonts. . This package contains the runtime library's development files. Package: libfontforge1 Section: libs Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Breaks: fontforge (<= 0.0.20090224), libfontforge-dev (<< 0.0.20120101+git-3) Replaces: fontforge (<= 0.0.20090224), libfontforge-dev (<< 0.0.20120101+git-3) Description: font editor - runtime library Besides being a font editor, FontForge is also a font format converter, and can convert among PostScript (ASCII & binary Type 1, some Type 3s, some Type 0s), TrueType, and OpenType (Type2), CID-keyed, SVG, CFF and multiple-master fonts. . This package contains the runtime library. Package: libgdraw4 Section: libs Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Breaks: fontforge (<= 0.0.20090224) Replaces: fontforge (<= 0.0.20090224) Description: font editor - runtime graphics and widget library Besides being a font editor, FontForge is also a font format converter, and can convert among PostScript (ASCII & binary Type 1, some Type 3s, some Type 0s), TrueType, and OpenType (Type2), CID-keyed, SVG, CFF and multiple-master fonts. . This package contains the graphics and widget runtime library. Package: python-fontforge Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}, libfontforge1 (= ${binary:Version}) XB-Python-Version: ${python:Versions} Provides: ${python:Provides} Section: python Description: font editor - Python bindings Besides being a font editor, FontForge is also a font format converter, and can convert among PostScript (ASCII & binary Type 1, some Type 3s, some Type 0s), TrueType, and OpenType (Type2), CID-keyed, SVG, CFF and multiple-master fonts. . This package provides the Python modules (the libraries fontforge and psMat) to access a FontForge program for font manipulations. Package: fontforge-dbg Section: debug Architecture: any Priority: extra Depends: ${misc:Depends}, fontforge (= ${binary:Version}) Description: debugging symbols for fontforge Besides being a font editor, FontForge is also a font format converter, and can convert among PostScript (ASCII & binary Type 1, some Type 3s, some Type 0s), TrueType, and OpenType (Type2), CID-keyed, SVG, CFF and multiple-master fonts. . This package contains the debugging symbols for fontforge.