diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1996-08-02 00:13:49 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1996-08-02 00:13:49 +0000 |
commit | 3279480ba2c99df9fada3ea566ce226a176bff8c (patch) | |
tree | 09d7f6e1bb5adfa328e34f3c311a128c144d6b23 /print/psutils-letter | |
parent | 613aff9bcf580cba7cb752f65b85ff00bc1e3b92 (diff) | |
download | ports-3279480ba2c99df9fada3ea566ce226a176bff8c.tar.gz ports-3279480ba2c99df9fada3ea566ce226a176bff8c.zip |
Notes
Diffstat (limited to 'print/psutils-letter')
-rw-r--r-- | print/psutils-letter/distinfo | 2 | ||||
-rw-r--r-- | print/psutils-letter/pkg-descr | 2 | ||||
-rw-r--r-- | print/psutils-letter/pkg-plist | 4 | ||||
-rw-r--r-- | print/psutils-letter/scripts/configure | 10 |
4 files changed, 16 insertions, 2 deletions
diff --git a/print/psutils-letter/distinfo b/print/psutils-letter/distinfo index 2da50b65123f..749b169af3a0 100644 --- a/print/psutils-letter/distinfo +++ b/print/psutils-letter/distinfo @@ -1 +1 @@ -MD5 (psutils-1.13.tar.gz) = 4e1030fdbd94f91c156bc3ea309acbe2 +MD5 (psutils.tar.gz) = d7d02dcb2a8947d11457e53ed6378267 diff --git a/print/psutils-letter/pkg-descr b/print/psutils-letter/pkg-descr index 61652f317800..8c03cd71cfba 100644 --- a/print/psutils-letter/pkg-descr +++ b/print/psutils-letter/pkg-descr @@ -11,9 +11,11 @@ fixfmps (perl) filter to fix framemaker documents so that psselect etc. work fixmacps (perl) filter to fix Macintosh documents with saner version of md fixpsditps (perl) filter to fix Transcript psdit documents to work with PSUtils fixpspps (perl) filter to fix PSPrint PostScript so that psselect etc. work +fixscribeps (perl) filter to fix Scribe PostScript so that psselect etc. work fixtpps (perl) filter to fix Troff Tpscript documents fixwfwps (perl) filter to fix Word for Windows documents for PSUtils fixwpps (perl) filter to fix WordPerfect documents for PSUtils fixwwps (perl) filter to fix Windows Write documents for PSUtils extractres (perl) filter to extract resources from PostScript files includeres (perl) filter to include resources into PostScript files +psmerge (perl) hack script to merge multiple PostScript files diff --git a/print/psutils-letter/pkg-plist b/print/psutils-letter/pkg-plist index c41e20d3c458..33c7f282ad76 100644 --- a/print/psutils-letter/pkg-plist +++ b/print/psutils-letter/pkg-plist @@ -12,16 +12,20 @@ bin/fixpspps bin/fixtpps bin/fixwfwps bin/fixwpps +bin/fixscribeps bin/fixwwps bin/fixdlsrps bin/extractres bin/includeres +bin/psmerge man/man1/psbook.1.gz man/man1/psselect.1.gz man/man1/pstops.1.gz man/man1/epsffit.1.gz man/man1/psnup.1.gz man/man1/psresize.1.gz +man/man1/psmerge.1.gz +man/man1/fixscribeps.1.gz man/man1/getafm.1.gz man/man1/fixdlsrps.1.gz man/man1/fixfmps.1.gz diff --git a/print/psutils-letter/scripts/configure b/print/psutils-letter/scripts/configure index f740baf98d37..c3293ce93704 100644 --- a/print/psutils-letter/scripts/configure +++ b/print/psutils-letter/scripts/configure @@ -1,3 +1,11 @@ #!/bin/sh -chmod +x ${WRKSRC}/maketext +cd $WRKSRC || exit 1 +cp Makefile.unix Makefile +cat >>Makefile<<END +BINDIR = $PREFIX/bin +INCLUDEDIR = $PREFIX/share/psutils +MANDIR =$PREFIX/man/man1 +PERL = /usr/bin/perl +CC=cc +END exit 0 |