diff options
author | jschauma <jschauma@pkgsrc.org> | 2004-08-20 01:16:21 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2004-08-20 01:16:21 +0000 |
commit | dfa9deb36fef24e55e14d70dcb4d67275d31e2d6 (patch) | |
tree | 736d023c4498f9c41ff327541606e81c9410296b /print/poster/patches | |
parent | 92dc54e314e5bdbecc2c50f1c7b8b3b9511bdb80 (diff) | |
download | pkgsrc-dfa9deb36fef24e55e14d70dcb4d67275d31e2d6.tar.gz |
Import 'poster' package, based on the FreeBSD port, converted using
port2pkg.
Here you have the new release of `poster', to scale postscript
images to a larger size, and print them on larger media and/or
tile them to print on multiple sheets.
With respect to the earlier release:
- support is added for foreign (Non European A*) media sizes.
- options for scaling became more flexible
- original restrictions on white margins in your drawing are removed.
For a complete explanation see the accompanying manual.
Diffstat (limited to 'print/poster/patches')
-rw-r--r-- | print/poster/patches/patch-aa | 13 | ||||
-rw-r--r-- | print/poster/patches/patch-ab | 11 |
2 files changed, 24 insertions, 0 deletions
diff --git a/print/poster/patches/patch-aa b/print/poster/patches/patch-aa new file mode 100644 index 00000000000..3af00048ef1 --- /dev/null +++ b/print/poster/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2004/08/20 01:16:21 jschauma Exp $ + +--- poster.c.org Thu Apr 29 00:22:46 1999 ++++ poster.c Sun Jan 30 00:48:11 2000 +@@ -570,7 +570,7 @@ + + got_bb = 0; + dsc_cont = inbody = gotall = level = atend = 0; +- while (!gotall && (gets(buf) != NULL)) ++ while (!gotall && (fgets(buf, BUFSIZE, stdin) != NULL)) + { + if (buf[0] != '%') + { dsc_cont = 0; diff --git a/print/poster/patches/patch-ab b/print/poster/patches/patch-ab new file mode 100644 index 00000000000..1e374eaa628 --- /dev/null +++ b/print/poster/patches/patch-ab @@ -0,0 +1,11 @@ +$NetBSD: patch-ab,v 1.1.1.1 2004/08/20 01:16:21 jschauma Exp $ + +--- Makefile.orig 2004-08-19 20:58:14.000000000 -0400 ++++ Makefile 2004-08-19 20:58:38.000000000 -0400 +@@ -1,5 +1,5 @@ + poster: poster.c +- gcc -O -o poster poster.c -lm ++ ${CC} ${CFLAGS} -o poster poster.c -lm + + # HPUX: cc -O -Aa -D_POSIX_SOURCE -o poster poster.c -lm + # Note that this program might trigger a stupid bug in the HPUX C library, |