aboutsummaryrefslogtreecommitdiff
path: root/print/a2ps43-letter
diff options
context:
space:
mode:
Diffstat (limited to 'print/a2ps43-letter')
-rw-r--r--print/a2ps43-letter/Makefile24
-rw-r--r--print/a2ps43-letter/distinfo1
-rw-r--r--print/a2ps43-letter/files/patch-aa14
-rw-r--r--print/a2ps43-letter/files/patch-ab89
-rw-r--r--print/a2ps43-letter/pkg-comment1
-rw-r--r--print/a2ps43-letter/pkg-descr6
-rw-r--r--print/a2ps43-letter/pkg-plist6
-rw-r--r--print/a2ps43-letter/scripts/configure14
8 files changed, 0 insertions, 155 deletions
diff --git a/print/a2ps43-letter/Makefile b/print/a2ps43-letter/Makefile
deleted file mode 100644
index 8e0a1779185d..000000000000
--- a/print/a2ps43-letter/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# New ports collection makefile for: a2ps
-# Version required: 4.3
-# Date created: 6 November 1994
-# Whom: jmz
-#
-# $Id$
-#
-
-DISTNAME= a2ps
-PKGNAME= a2ps-4.3
-CATEGORIES+= printing
-MASTER_SITES= ftp://ftp.imag.fr/archive/postscript/
-DISTFILES= a2ps.V4.3.tar.gz
-
-MAINTAINER= jmz@FreeBSD.org
-
-NO_WRKSUBDIR= yes
-
-pre-install:
- @mkdir -p ${PREFIX}/bin
- @mkdir -p ${PREFIX}/man/man1
- @(cd ${WRKSRC}; make install.man)
-
-.include <bsd.port.mk>
diff --git a/print/a2ps43-letter/distinfo b/print/a2ps43-letter/distinfo
deleted file mode 100644
index ae227f43edf0..000000000000
--- a/print/a2ps43-letter/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (a2ps.V4.3.tar.gz) = d3ae591323f0ece28bf3f3bc35f5799f
diff --git a/print/a2ps43-letter/files/patch-aa b/print/a2ps43-letter/files/patch-aa
deleted file mode 100644
index 816678edba77..000000000000
--- a/print/a2ps43-letter/files/patch-aa
+++ /dev/null
@@ -1,14 +0,0 @@
-*** a2ps.1.orig Tue Feb 15 01:15:16 1994
---- a2ps.1 Tue Feb 21 16:56:19 1995
-***************
-*** 155,160 ****
---- 155,163 ----
- is the number of copies desired of each file named. By default, you get
- only one copy.
- .TP 0.6i
-+ .B -a
-+ Use the American paper size (8.5" x 11") as the basis for all calculations.
-+ .TP 0.6i
- .B -d
- Print the current date and time at the bottom of the page. This option
- is affected by the no surrounding border and the no header options.
diff --git a/print/a2ps43-letter/files/patch-ab b/print/a2ps43-letter/files/patch-ab
deleted file mode 100644
index 75d6ca852483..000000000000
--- a/print/a2ps43-letter/files/patch-ab
+++ /dev/null
@@ -1,89 +0,0 @@
-*** a2ps.c.orig Tue Feb 15 01:14:59 1994
---- a2ps.c Tue Feb 21 16:56:19 1995
-***************
-*** 166,175 ****
---- 166,177 ----
- */
- #ifndef WIDTH
- #define WIDTH 8.27
-+ #define USA_WIDTH 8.5
- #endif
-
- #ifndef HEIGHT
- #define HEIGHT 11.64
-+ #define USA_HEIGHT 11.0
- #endif
-
- #ifndef MARGIN
-***************
-*** 362,367 ****
---- 364,371 ----
- /*
- * Sheet dimensions
- */
-+ double paper_height = HEIGHT; /* Paper height */
-+ double paper_width = WIDTH; /* Paper width */
- double page_height = HEIGHT; /* Paper height */
- double page_width = WIDTH; /* Paper width */
-
-***************
-*** 382,387 ****
---- 386,392 ----
- fprintf(stderr,"pos. = -#num\t\tnumber of copies to print\n");
- fprintf(stderr," -1\t\tone page per sheet\n");
- fprintf(stderr," -2\t\tTWIN PAGES per sheet\n");
-+ fprintf(stderr," -a\t\tUse USA paper size (8.5 x 11)\n");
- fprintf(stderr," -d\t-nd\tprint (DON'T PRINT) current date at the bottom\n");
- fprintf(stderr," -Fnum\t\tfont size, num is a float number\n");
- fprintf(stderr," -Hstr\t\tuse str like header title for subsequent files\n");
-***************
-*** 464,469 ****
---- 469,478 ----
- usage(EXIT_FAILURE);
- interpret = TRUE;
- break;
-+ case 'a': /* American paper sizes */
-+ paper_height = USA_HEIGHT;
-+ paper_width = USA_WIDTH;
-+ break;
- case 'n':
- if (arg[2] == NUL)
- return;
-***************
-*** 1471,1478 ****
- printf("\n%% Initialize page description variables.\n");
- printf("/x0 0 def\n");
- printf("/y0 0 def\n");
-! printf("/sh %g inch def\n", (double)HEIGHT);
-! printf("/sw %g inch def\n", (double)WIDTH);
- printf("/margin %g inch def\n", (double)MARGIN);
- printf("/rm margin 3 div def\n");
- printf("/lm margin 2 mul 3 div def\n");
---- 1480,1487 ----
- printf("\n%% Initialize page description variables.\n");
- printf("/x0 0 def\n");
- printf("/y0 0 def\n");
-! printf("/sh %g inch def\n", (double)paper_height);
-! printf("/sw %g inch def\n", (double)paper_width);
- printf("/margin %g inch def\n", (double)MARGIN);
- printf("/rm margin 3 div def\n");
- printf("/lm margin 2 mul 3 div def\n");
-***************
-*** 1794,1801 ****
- /* Initialize variables not depending of positional options */
- landscape = twinpages = -1; /* To force format switching */
- fontsize = -1.0; /* To force fontsize switching */
-! page_height = (double)(HEIGHT - MARGIN) * PIXELS_INCH;
-! page_width = (double)(WIDTH - MARGIN) * PIXELS_INCH;
-
- /* Postcript prologue printing */
- print_prologue();
---- 1803,1810 ----
- /* Initialize variables not depending of positional options */
- landscape = twinpages = -1; /* To force format switching */
- fontsize = -1.0; /* To force fontsize switching */
-! page_height = (double)(paper_height - MARGIN) * PIXELS_INCH;
-! page_width = (double)(paper_width - MARGIN) * PIXELS_INCH;
-
- /* Postcript prologue printing */
- print_prologue();
diff --git a/print/a2ps43-letter/pkg-comment b/print/a2ps43-letter/pkg-comment
deleted file mode 100644
index fe4557f46341..000000000000
--- a/print/a2ps43-letter/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-a2ps - formats an ascii file for printing on a postscript printer. Version 4.3
diff --git a/print/a2ps43-letter/pkg-descr b/print/a2ps43-letter/pkg-descr
deleted file mode 100644
index 0b5c50cef860..000000000000
--- a/print/a2ps43-letter/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-A2ps formats each named file for printing in a postscript printer; if
-no file is given, a2ps reads from the standard input. The format used
-is nice and compact: normally two pages on each physical page, borders
-surrounding pages, headers with useful information (page number,
-printing date, file name or supplied header), line numbering, etc.
-This is very useful for making archive listings of programs.
diff --git a/print/a2ps43-letter/pkg-plist b/print/a2ps43-letter/pkg-plist
deleted file mode 100644
index 5b3576e3316c..000000000000
--- a/print/a2ps43-letter/pkg-plist
+++ /dev/null
@@ -1,6 +0,0 @@
-@cd /usr/local
-@owner bin
-@mode 755
-bin/a2ps
-@mode 644
-man/man1/a2ps.1
diff --git a/print/a2ps43-letter/scripts/configure b/print/a2ps43-letter/scripts/configure
deleted file mode 100644
index 04369818f2a2..000000000000
--- a/print/a2ps43-letter/scripts/configure
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-cd $WRKSRC || exit 1;
-
-cat >> Makefile << END
-
-CFLAGS= -DBSD -O
-BINDIR= $PREFIX/bin
-MANDIR= $PREFIX/man/man1
-MANEXT= 1
-
-END
-exit 0;
-