diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-02-03 11:12:01 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-02-03 11:12:01 +0000 |
commit | 5114e2637e2224ea9b0e0ea4b315bc38370ccf04 (patch) | |
tree | 414dd9b31f0192eb7d0054b2463c2eed8afd25b4 /graphics/gimp-manual-html | |
parent | (1) ${MASTER_SITE_SUBDIR} is now a list, and ${MASTER_SITE_*} macros (diff) |
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 'graphics/gimp-manual-html')
-rw-r--r-- | graphics/gimp-manual-html/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/graphics/gimp-manual-html/Makefile b/graphics/gimp-manual-html/Makefile index 4ef3cbbfd37b..91590db3ce7d 100644 --- a/graphics/gimp-manual-html/Makefile +++ b/graphics/gimp-manual-html/Makefile @@ -3,7 +3,7 @@ # Date created: 5 June 1998 # Whom: Brett Taylor # -# $Id: Makefile,v 1.7 1998/12/04 22:10:57 billf Exp $ +# $Id: Makefile,v 1.8 1998/12/07 19:26:02 billf Exp $ # DISTNAME= GimpUserManual-1.0.0 @@ -37,15 +37,10 @@ pre-fetch: EXTRACT_SUFX= -html.tar.bz2 WRKSRC= ${WRKDIR}/GimpUserManaul_v1.0.0 -BUILD_DEPENDS= bzip2:${PORTSDIR}/archivers/bzip2 - +USE_BZIP2= yes USE_X_PREFIX= yes NO_BUILD= yes -EXTRACT_CMD= bzip2 -EXTRACT_BEFORE_ARGS= -cd -EXTRACT_AFTER_ARGS= | tar -xf - - do-install: @${MKDIR} ${PREFIX}/share/doc/gimp @${CP} ${WRKSRC}/* ${PREFIX}/share/doc/gimp |