diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-16 03:04:44 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-16 03:04:44 +0000 |
commit | 2338cbae2709fa31f2b29fa5a4636469fbc53d70 (patch) | |
tree | b4a01b61c27a7220ff7f5134cb7652ae5ab80571 /print/teTeX3-texmf | |
parent | e70b376fa428d35e2ee7ec89f1f025ea77c1a2e5 (diff) | |
download | pkgsrc-2338cbae2709fa31f2b29fa5a4636469fbc53d70.tar.gz |
Change the EXTRACT_USING_PAX defined/undefined option into a EXTRACT_USING
which can take multiple values -- "pax" or "gtar". The default value
of EXTRACT_USING is "pax", which more closely matches reality since
before, we were using bootstrap "tar" for ${GTAR} and it was actually
pax-as-tar. Also, stop pretending pax-as-tar from the bootstrap kit
or on NetBSD is GNU tar. Lastly, in bsd.pkg.extract.mk, note whether
we need "pax" or "gtar" depending on what we need to extract the
distfiles.
Diffstat (limited to 'print/teTeX3-texmf')
-rw-r--r-- | print/teTeX3-texmf/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/print/teTeX3-texmf/Makefile b/print/teTeX3-texmf/Makefile index 1af7e7861e2..43f053e3a25 100644 --- a/print/teTeX3-texmf/Makefile +++ b/print/teTeX3-texmf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/05/16 01:15:33 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2005/05/16 03:04:45 jlam Exp $ # DISTNAME= tetex-texmf-3.0 @@ -20,16 +20,12 @@ NO_CONFIGURE= yes NO_BUILD= yes USE_GNU_TOOLS+= patch -.if !defined(EXTRACT_USING_PAX) -PKGSRC_USE_TOOLS+= gtar -.endif - do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/texmf -.if defined(EXTRACT_USING_PAX) - cd ${PREFIX}/share/texmf; ${DECOMPRESS_CMD} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} | ${PAX} -O -cr `${CAT} ${FILESDIR}/exclude` -.else +.if !empty(EXTRACT_USING:Mgtar) cd ${PREFIX}/share/texmf; ${DECOMPRESS_CMD} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} | ${GTAR} -X ${FILESDIR}/exclude -xpf - +.else + cd ${PREFIX}/share/texmf; ${DECOMPRESS_CMD} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} | ${PAX} -O -cr `${CAT} ${FILESDIR}/exclude` .endif cd ${PREFIX}/share/texmf/dvipdfm/config && \ ${PATCH} ${_PATCH_BACKUP_ARG} .orig < ${FILESDIR}/dvipdfm-config.diff && \ |