pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/print/poster Import 'poster' package, based on the Fre...
details: https://anonhg.NetBSD.org/pkgsrc/rev/b55ef9496793
branches: trunk
changeset: 479670:b55ef9496793
user: jschauma <jschauma%pkgsrc.org@localhost>
date: Fri Aug 20 01:16:21 2004 +0000
description:
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:
print/poster/DESCR | 8 ++++++++
print/poster/Makefile | 20 ++++++++++++++++++++
print/poster/PLIST | 3 +++
print/poster/distinfo | 6 ++++++
print/poster/patches/patch-aa | 13 +++++++++++++
print/poster/patches/patch-ab | 11 +++++++++++
6 files changed, 61 insertions(+), 0 deletions(-)
diffs (85 lines):
diff -r e3e01dd712f1 -r b55ef9496793 print/poster/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/print/poster/DESCR Fri Aug 20 01:16:21 2004 +0000
@@ -0,0 +1,8 @@
+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.
diff -r e3e01dd712f1 -r b55ef9496793 print/poster/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/print/poster/Makefile Fri Aug 20 01:16:21 2004 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/08/20 01:16:21 jschauma Exp $
+# FreeBSD Id: ports/print/poster/Makefile,v 1.6 2004/02/06 13:12:14 trevor Exp
+
+DISTNAME= poster
+PKGNAME= poster-1.0
+CATEGORIES= print
+MASTER_SITES= ftp://ftp.ics.ele.tue.nl/pub/users/jos/poster/
+
+MAINTAINER= tech-pkg%NetBSD.org@localhost
+HOMEPAGE= http://printing.kde.org/downloads/
+COMMENT= Resize a ps image to print on larger media and/or multiple sheets
+
+ALL_TARGET= poster
+WRKSRC= ${WRKDIR}
+
+do-install:
+ @${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin
+ @${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.1 ${PREFIX}/man/man1/
+
+.include "../../mk/bsd.pkg.mk"
diff -r e3e01dd712f1 -r b55ef9496793 print/poster/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/print/poster/PLIST Fri Aug 20 01:16:21 2004 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/08/20 01:16:21 jschauma Exp $
+bin/poster
+man/man1/poster.1
diff -r e3e01dd712f1 -r b55ef9496793 print/poster/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/print/poster/distinfo Fri Aug 20 01:16:21 2004 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/08/20 01:16:21 jschauma Exp $
+
+SHA1 (poster.tar.gz) = 5e595b3f2698f5993cf5a52846d8236823509896
+Size (poster.tar.gz) = 28585 bytes
+SHA1 (patch-aa) = d99c44401de6d53a3142352eb2a835d9736c7b8d
+SHA1 (patch-ab) = 71e2d2219f7b18fa7514b202c048926fcf53bd0a
diff -r e3e01dd712f1 -r b55ef9496793 print/poster/patches/patch-aa
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/print/poster/patches/patch-aa Fri Aug 20 01:16:21 2004 +0000
@@ -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 -r e3e01dd712f1 -r b55ef9496793 print/poster/patches/patch-ab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/print/poster/patches/patch-ab Fri Aug 20 01:16:21 2004 +0000
@@ -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,
Home |
Main Index |
Thread Index |
Old Index