diff options
author | wiz <wiz@pkgsrc.org> | 2009-08-08 16:28:36 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-08-08 16:28:36 +0000 |
commit | 61576ff5c039f7b80e996dde6528bc0c7c9d426f (patch) | |
tree | cb779f89143a143a42a5311118c768e155efc9ef /fonts | |
parent | 34f58eddf71d9e85b519e711e0766054865a5423 (diff) | |
download | pkgsrc-61576ff5c039f7b80e996dde6528bc0c7c9d426f.tar.gz |
Update to 1.5, fix getline problem.
This version fixes several minor bugs, removes the last of the
deprecated GTK+ code, and improves the user interface of the
GlyphEditor.
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/gbdfed/Makefile | 8 | ||||
-rw-r--r-- | fonts/gbdfed/distinfo | 9 | ||||
-rw-r--r-- | fonts/gbdfed/patches/patch-ab | 41 |
3 files changed, 48 insertions, 10 deletions
diff --git a/fonts/gbdfed/Makefile b/fonts/gbdfed/Makefile index 3f89e53c591..8749686d945 100644 --- a/fonts/gbdfed/Makefile +++ b/fonts/gbdfed/Makefile @@ -1,15 +1,11 @@ -# $NetBSD: Makefile,v 1.1.1.1 2008/08/09 19:52:02 bjs Exp $ +# $NetBSD: Makefile,v 1.2 2009/08/08 16:28:36 wiz Exp $ # -DISTNAME= gbdfed-1.4 +DISTNAME= gbdfed-1.5 CATEGORIES= fonts MASTER_SITES= http://www.math.nmsu.edu/~mleisher/Software/gbdfed/ EXTRACT_SUFX= .tbz2 -PATCH_SITES= ${MASTER_SITES} -PATCHFILES= gbdfed-1.4-patch1 -PATCH_DIST_STRIP= -p1 - MAINTAINER= bjs@NetBSD.org HOMEPAGE= http://www.math.nmsu.edu/~mleisher/Software/gbdfed/ COMMENT= GTK-based BDF font editor diff --git a/fonts/gbdfed/distinfo b/fonts/gbdfed/distinfo index 9db362bbb34..9bcd7349533 100644 --- a/fonts/gbdfed/distinfo +++ b/fonts/gbdfed/distinfo @@ -1,9 +1,10 @@ -$NetBSD: distinfo,v 1.1.1.1 2008/08/09 19:52:02 bjs Exp $ +$NetBSD: distinfo,v 1.2 2009/08/08 16:28:36 wiz Exp $ SHA1 (gbdfed-1.4-patch1) = b8c5c0b7219a085e3d947dc39da39ae4270102ec RMD160 (gbdfed-1.4-patch1) = 476e9d2aaa0716cf9d052688e542ebec998b6263 Size (gbdfed-1.4-patch1) = 6035 bytes -SHA1 (gbdfed-1.4.tbz2) = 0e6fadefbb470e89d7045f6d640606100c96e5c2 -RMD160 (gbdfed-1.4.tbz2) = 9faa2ee2fbf34c6eaea1662231266233052bff56 -Size (gbdfed-1.4.tbz2) = 228556 bytes +SHA1 (gbdfed-1.5.tbz2) = b3a937beedf222e10bf6f379240d43687a9c75ac +RMD160 (gbdfed-1.5.tbz2) = d3754e4b0a2005ac347010a21296e45e1b1d3ef6 +Size (gbdfed-1.5.tbz2) = 229315 bytes SHA1 (patch-aa) = 2247ae325bd54647c7a06a096488eb75e68315a7 +SHA1 (patch-ab) = 38deb59e7a8a8479a2cf52c00f4404242e410d18 diff --git a/fonts/gbdfed/patches/patch-ab b/fonts/gbdfed/patches/patch-ab new file mode 100644 index 00000000000..da2cf19cda8 --- /dev/null +++ b/fonts/gbdfed/patches/patch-ab @@ -0,0 +1,41 @@ +$NetBSD: patch-ab,v 1.1 2009/08/08 16:28:36 wiz Exp $ + +--- bdfgname.c.orig 2009-03-06 18:12:28.000000000 +0000 ++++ bdfgname.c +@@ -39,7 +39,7 @@ static unsigned int adobe_names_used; + #define MAX_GLYPH_NAME_LEN 127 + + static int +-getline(FILE *in, char *buf, int limit) ++get_line(FILE *in, char *buf, int limit) + { + int c, i; + +@@ -78,11 +78,11 @@ _bdf_find_name(int code, char *name, FIL + + while (!feof(in)) { + pos = ftell(in); +- (void) getline(in, buf, 256); ++ (void) get_line(in, buf, 256); + while (!feof(in) && (buf[0] == 0 || buf[0] == '#')) { + buf[0] = 0; + pos = ftell(in); +- (void) getline(in, buf, 256); ++ (void) get_line(in, buf, 256); + } + + if (buf[0] == 0) +@@ -139,11 +139,11 @@ _bdf_load_adobe_names(FILE *in) + + while (!feof(in)) { + pos = ftell(in); +- (void) getline(in, buf, 256); ++ (void) get_line(in, buf, 256); + while (!feof(in) && (buf[0] == 0 || buf[0] == '#')) { + buf[0] = 0; + pos = ftell(in); +- (void) getline(in, buf, 256); ++ (void) get_line(in, buf, 256); + } + + if (adobe_names_used == adobe_names_size) { |