diff options
author | jlam <jlam@pkgsrc.org> | 1999-11-01 03:29:29 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 1999-11-01 03:29:29 +0000 |
commit | 2e2b3511561d94a568e47133fe4966be18de87d0 (patch) | |
tree | 654fbeb66f899470b1098669439c4f397783b149 /graphics/gd/pkg | |
parent | cb28ee18176b5a6cd9ed6907e7faa7a7ca7f4d74 (diff) | |
download | pkgsrc-2e2b3511561d94a568e47133fe4966be18de87d0.tar.gz |
* Update to gd-1.7.3. Now depends on graphics/freetype and graphics/xpm.
* Build process no longer uses configure.
* Change DESCR to reflect that gd makes PNG, not GIF, files.
* Version library at 1.7. Fixes PR#????
Changes from version 1.6.3:
--------------------------
What's new in version 1.7.3?
Another attempt at Makefile fixes to permit linking with all libraries
required on platforms with order- dependent linkers. Perhaps it will
work this time.
What's new in version 1.7.2?
An uninitialized-pointer bug in gdtestttf.c was corrected. This bug
caused crashes at the end of each call to gdImageStringTTF on some
platforms. Thanks to Wolfgang Haefelinger.
Documentation fixes. Thanks to Dohn Arms.
Makefile fixes to permit linking with all libraries required on
platforms with order- dependent linkers.
What's new in version 1.7.1?
A minor buglet in the Makefile was corrected, as well as an inaccurate
error message in gdtestttf.c. Thanks to Masahito Yamaga.
What's new in version 1.7?
Version 1.7 contains the following changes:
* Japanese language support for the TrueType functions. Thanks to
Masahito Yamaga.
* autoconf and configure have been removed, in favor of a carefully
designed Makefile which produces and properly installs the library
and the binaries. System-dependent variables are at the top of the
Makefile for easy modification. I'm sorry, folks, but autoconf
generated _many, many confused email messages_ from people who
didn't have things where autoconf expected to find them. I am not
an autoconf/automake wizard, and gd is a simple, very compact
library which does not need to be a shared library. I _did_ make
many improvements over the old gd 1.3 Makefile, which were
directly inspired by the autoconf version found in the 1.6 series
(thanks to John Ellson).
* Completely ANSI C compliant, according to the -pedantic-errors
flag of gcc. Several pieces of not-quite-ANSI-C code were causing
problems for those with non-gcc compilers.
* gdttf.c patched to allow the use of Windows symbol fonts, when
present (thanks to Joseph Peppin).
* extern "C" wrappers added to gd.h and the font header files for
the convenience of C++ programmers. bdftogd was also modified to
automatically insert these wrappers into future font header files.
Thanks to John Lindal.
* Compiles correctly on platforms that don't define SEEK_SET. Thanks
to Robert Bonomi.
* Loads Xpm images via the gdImageCreateFromXpm function, if the Xpm
library is available. Thanks to Caolan McNamara.
Diffstat (limited to 'graphics/gd/pkg')
-rw-r--r-- | graphics/gd/pkg/COMMENT | 2 | ||||
-rw-r--r-- | graphics/gd/pkg/DESCR | 33 | ||||
-rw-r--r-- | graphics/gd/pkg/PLIST | 14 |
3 files changed, 22 insertions, 27 deletions
diff --git a/graphics/gd/pkg/COMMENT b/graphics/gd/pkg/COMMENT index e59d31d35dc..b505900641d 100644 --- a/graphics/gd/pkg/COMMENT +++ b/graphics/gd/pkg/COMMENT @@ -1 +1 @@ -A graphics library for fast PNG creation +graphics library for fast PNG creation diff --git a/graphics/gd/pkg/DESCR b/graphics/gd/pkg/DESCR index ac93e67ac56..891ec697dff 100644 --- a/graphics/gd/pkg/DESCR +++ b/graphics/gd/pkg/DESCR @@ -1,22 +1,15 @@ -DESCRIPTION - gd is a graphics library. It allows your code to quickly draw - images complete with lines, arcs, text, multiple colors, cut - and paste from other images, and flood fills, and write out - the result as a .GIF file. This is particularly useful in - World Wide Web applications, where .GIF is the format used for - inline images. + gd is a graphics library. It allows your code to quickly draw images + complete with lines, arcs, text, multiple colors, cut and paste from + other images, and flood fills, and write out the result as a .PNG + file. This is particularly useful in World Wide Web applications, + where .PNG is one of the formats accepted for inline images by most + browsers. - gd is not a paint program. If you are looking for a paint - program, try xpaint by David Koblas, available by anonymous - FTP from ftp.netcom.com in pub/ko/koblas. (That package is - for the X Window System; for the Mac and the PC, paint - programs are considerably easier to find.) + gd is not a paint program. If you are looking for a paint program, you + are looking in the wrong place. If you are not a programmer, you are + looking in the wrong place. - gd does not provide for every possible desirable graphics - operation. It is not necessary or desirable for gd to become - a kitchen-sink graphics package, but gd incorporates most of - the commonly requested features for a 2D package. - -AUTHOR - gd was written by Thomas Boutell and is currently distributed by - boutell.com, Inc. + gd does not provide for every possible desirable graphics operation. + It is not necessary or desirable for gd to become a kitchen-sink + graphics package, but incorporates most of the commonly requested + features for an 8-bit 2D package. diff --git a/graphics/gd/pkg/PLIST b/graphics/gd/pkg/PLIST index c58373dae88..1a358b73135 100644 --- a/graphics/gd/pkg/PLIST +++ b/graphics/gd/pkg/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 1999/08/26 15:26:29 agc Exp $ +@comment $NetBSD: PLIST,v 1.5 1999/11/01 03:29:31 jlam Exp $ bin/pngtogd bin/pngtogd2 bin/gdtopng @@ -6,12 +6,14 @@ bin/gd2topng bin/gd2copypal bin/gdparttopng bin/webpng +bin/bdftogd include/gd.h +include/gdcache.h include/gd_io.h -include/gdfontt.h -include/gdfonts.h -include/gdfontmb.h -include/gdfontl.h include/gdfontg.h -lib/libgd.so.0.0 +include/gdfontl.h +include/gdfontmb.h +include/gdfonts.h +include/gdfontt.h lib/libgd.a +lib/libgd.so.1.7 |