summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>1995-12-06 00:35:31 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>1995-12-06 00:35:31 +0000
commit28e68753dc3f301862fb0229ac999c672df5ce26 (patch)
tree57ddcbc0e38513c30831e7fa0f68d15763081cea /print
parentAdd .gz to the manpages, now that they are compressed. (diff)
Use (zcat | dd | tar xf -) < filename to extract the distfile.
remove superfluous mkdir
Notes
Notes: svn path=/head/; revision=2534
Diffstat (limited to 'print')
-rw-r--r--print/dvips/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/print/dvips/Makefile b/print/dvips/Makefile
index cde9d957a37e..1c2dfa2a38d3 100644
--- a/print/dvips/Makefile
+++ b/print/dvips/Makefile
@@ -3,7 +3,7 @@
# Date created: 30 September 1994
# Whom: jmz
#
-# $Id: Makefile,v 1.8 1995/04/22 16:49:58 jmz Exp $
+# $Id: Makefile,v 1.9 1995/11/22 13:18:03 asami Exp $
#
DISTNAME= dvips
@@ -16,8 +16,11 @@ MAINTAINER= jmz@FreeBSD.org
IS_INTERACTIVE= yes
+EXTRACT_CMD= (zcat | dd 2>/dev/null | tar xf -)
+EXTRACT_ARGS= <
+
pre-install:
@mkdir -p ${PREFIX}/lib/texmf
- @mkdir -p ${PREFIX}/man/man1
+
.include <bsd.port.mk>