diff options
author | asami <asami@FreeBSD.org> | 1999-02-03 19:12:01 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1999-02-03 19:12:01 +0800 |
commit | aa52cd921c82a10ec33065084fe0edb5cf8bebbc (patch) | |
tree | b70284a297d2e3c06462e3a3a86166c4371477f9 /textproc/dsssl-docbook-modular | |
parent | dd1603cad7e60d10dd91a2f1f918e24ed859ed24 (diff) | |
download | freebsd-ports-graphics-aa52cd921c82a10ec33065084fe0edb5cf8bebbc.tar.gz freebsd-ports-graphics-aa52cd921c82a10ec33065084fe0edb5cf8bebbc.tar.zst freebsd-ports-graphics-aa52cd921c82a10ec33065084fe0edb5cf8bebbc.zip |
Adjust port Makefiles to new EXTRACT_* variable defaults. See log of
bsd.port.mk rev. 1.304 for details on the change.
The fix here is one of the following.
(1) Define USE_BZIP2 instead of BUILD_DEPENDS on bzip2 and redefining
EXTRACT_* commands.
(2) Change ${EXTRACT_CMD} to ${TAR} when the command is obviously
calling the "tar" command (i.e., arguments like "-xzf" are spelled
out).
(3) If ${EXTRACT_CMD} is called directly with ${EXTRACT_BEFORE_ARGS},
add ${EXTRACT_AFTER_ARGS} to the command line as well.
(4) If any of EXTRACT_CMD, EXTRACT_BEFORE_ARGS or EXTRACT_AFTER_ARGS
is set, define the other two too.
Diffstat (limited to 'textproc/dsssl-docbook-modular')
-rw-r--r-- | textproc/dsssl-docbook-modular/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/dsssl-docbook-modular/Makefile b/textproc/dsssl-docbook-modular/Makefile index 76a577c06a1..a126ddd0224 100644 --- a/textproc/dsssl-docbook-modular/Makefile +++ b/textproc/dsssl-docbook-modular/Makefile @@ -3,7 +3,7 @@ # Date created: 16 March 1998 # Whom: Jun Kuriyama <kuriyama@opt.phys.waseda.ac.jp> # -# $Id: Makefile,v 1.13 1998/12/23 14:21:43 kuriyama Exp $ +# $Id: Makefile,v 1.14 1999/01/16 07:44:13 kuriyama Exp $ # DISTNAME= db133 @@ -24,6 +24,7 @@ RUN_DEPENDS= ${PREFIX}/share/sgml/docbook/3.0/catalog:${PORTSDIR}/textproc/docbo EXTRACT_CMD= unzip EXTRACT_BEFORE_ARGS= -a -q -L +EXTRACT_AFTER_ARGS= # empty NO_MTREE= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/docbook |