summaryrefslogtreecommitdiff
path: root/japanese/eb
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2003-02-22 17:04:33 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2003-02-22 17:04:33 +0000
commita1898cd9f5c861fd937b19b4f0e14496443352fa (patch)
treeee42a9f80db852c431b021d28a22142d0254cebd /japanese/eb
parentHand maintainership over to nork@. (diff)
Avoid the use of tar(1)'s --no-same-owner flag, which is not supported
by version 1.11.2 or earlier. This fixes installation on older systems prior to 4.7-RELEASE. PR: ports/42143 (no patch) Submitted by: Kimura Fuyuki <fuyuki@hadaly.org>
Notes
Notes: svn path=/head/; revision=76178
Diffstat (limited to 'japanese/eb')
-rw-r--r--japanese/eb/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/japanese/eb/Makefile b/japanese/eb/Makefile
index 581f0de8f58f..e53abf697d25 100644
--- a/japanese/eb/Makefile
+++ b/japanese/eb/Makefile
@@ -70,14 +70,16 @@ APPENDIXDIR= ${PREFIX}/share/eb/appendix
pre-configure:
cd ${WRKSRC}; autoconf
+ ${MKDIR} ${WRKDIR}/appendix
+.for file in ${APPENDIXFILES}
+ ${TAR} --exclude CVS -C ${WRKDIR}/appendix -zxmf \
+ ${DISTDIR}/${DIST_SUBDIR}/${file}
+.endfor
post-install:
.for file in ${LISTFILES}
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${file} ${APPENDIXDIR}
.endfor
-.for file in ${APPENDIXFILES}
- ${TAR} --no-same-owner --exclude CVS -C ${APPENDIXDIR} -zxmf\
- ${DISTDIR}/${DIST_SUBDIR}/${file}
-.endfor
+ ${CP} -R ${WRKDIR}/appendix/ ${APPENDIXDIR}
.include <bsd.port.mk>