diff options
author | jmz <jmz@FreeBSD.org> | 1995-12-06 00:35:31 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1995-12-06 00:35:31 +0000 |
commit | c8c230e08882d012996d217b9fe81f66b06bc1b5 (patch) | |
tree | a9910db41754af82af81ab469733baece2538bb3 /print/dvips | |
parent | 1e68f46e9e58653a01a9c488f1b989890ef70f79 (diff) | |
download | FreeBSD-ports-c8c230e08882d012996d217b9fe81f66b06bc1b5.zip FreeBSD-ports-c8c230e08882d012996d217b9fe81f66b06bc1b5.tar.gz |
Use (zcat | dd | tar xf -) < filename to extract the distfile.
remove superfluous mkdir
Diffstat (limited to 'print/dvips')
-rw-r--r-- | print/dvips/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/print/dvips/Makefile b/print/dvips/Makefile index cde9d95..1c2dfa2 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> |