diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-22 23:33:47 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-22 23:33:47 +0000 |
commit | e36f9dbee84ccfd7ed078050303a76b569d0ead0 (patch) | |
tree | 4f6e254ed273f40def6ec9e6d94066be8e9c6588 /japanese | |
parent | 26083abcc9eb48fec93239f2c3257eab60edb1c0 (diff) | |
download | FreeBSD-ports-e36f9dbee84ccfd7ed078050303a76b569d0ead0.zip FreeBSD-ports-e36f9dbee84ccfd7ed078050303a76b569d0ead0.tar.gz |
awk -> ${AWK}
basename -> ${BASENAME}
cat -> ${CAT}
cp -> ${CP}
ldconfig -> ${LDCONFIG}
mkdir -> ${MKDIR}
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/edict-utf-8/Makefile | 10 | ||||
-rw-r--r-- | japanese/edict/Makefile | 10 | ||||
-rw-r--r-- | japanese/libslang/Makefile | 4 | ||||
-rw-r--r-- | japanese/xjman-3/Makefile | 4 | ||||
-rw-r--r-- | japanese/xjman/Makefile | 4 |
5 files changed, 16 insertions, 16 deletions
diff --git a/japanese/edict-utf-8/Makefile b/japanese/edict-utf-8/Makefile index 957d3a7..a917f77 100644 --- a/japanese/edict-utf-8/Makefile +++ b/japanese/edict-utf-8/Makefile @@ -3,7 +3,7 @@ # Date created: 18 August 1997 # Whom: Jonathan Hanna # -# $Id: Makefile,v 1.5 1999/07/17 17:13:46 cpiazza Exp $ +# $Id: Makefile,v 1.6 1999/08/22 18:58:29 mharo Exp $ # DISTNAME= edict-19990714 @@ -74,7 +74,7 @@ do-install: @for file in ${DICTFILES}; do \ case $$file in \ *.gz) \ - instfile=`basename $$file .gz` ; \ + instfile=`${BASENAME} $$file .gz` ; \ if ${GZIP_CMD} -cd ${_DISTDIR}/$$file > ${DATADIR}/$$instfile ; \ then \ true ; \ @@ -83,7 +83,7 @@ do-install: fi \ ;; \ *.Z) \ - instfile=`basename $$file .Z` ; \ + instfile=`${BASENAME} $$file .Z` ; \ if ${GZIP_CMD} -cd ${_DISTDIR}/$$file > ${DATADIR}/$$instfile ; \ then \ true ; \ @@ -92,7 +92,7 @@ do-install: fi \ ;; \ *.zip) \ - instfile=`basename $$file .zip` ; \ + instfile=`${BASENAME} $$file .zip` ; \ if unzip -o ${_DISTDIR}/$$file $$instfile -d ${DATADIR} ; \ then \ true ; \ @@ -101,7 +101,7 @@ do-install: fi \ ;; \ *) \ - instfile=`basename $$file` ; \ + instfile=`${BASENAME} $$file` ; \ ${CP} ${_DISTDIR}/$$file ${DATADIR} ; \ ;; \ esac ; \ diff --git a/japanese/edict/Makefile b/japanese/edict/Makefile index 957d3a7..a917f77 100644 --- a/japanese/edict/Makefile +++ b/japanese/edict/Makefile @@ -3,7 +3,7 @@ # Date created: 18 August 1997 # Whom: Jonathan Hanna # -# $Id: Makefile,v 1.5 1999/07/17 17:13:46 cpiazza Exp $ +# $Id: Makefile,v 1.6 1999/08/22 18:58:29 mharo Exp $ # DISTNAME= edict-19990714 @@ -74,7 +74,7 @@ do-install: @for file in ${DICTFILES}; do \ case $$file in \ *.gz) \ - instfile=`basename $$file .gz` ; \ + instfile=`${BASENAME} $$file .gz` ; \ if ${GZIP_CMD} -cd ${_DISTDIR}/$$file > ${DATADIR}/$$instfile ; \ then \ true ; \ @@ -83,7 +83,7 @@ do-install: fi \ ;; \ *.Z) \ - instfile=`basename $$file .Z` ; \ + instfile=`${BASENAME} $$file .Z` ; \ if ${GZIP_CMD} -cd ${_DISTDIR}/$$file > ${DATADIR}/$$instfile ; \ then \ true ; \ @@ -92,7 +92,7 @@ do-install: fi \ ;; \ *.zip) \ - instfile=`basename $$file .zip` ; \ + instfile=`${BASENAME} $$file .zip` ; \ if unzip -o ${_DISTDIR}/$$file $$instfile -d ${DATADIR} ; \ then \ true ; \ @@ -101,7 +101,7 @@ do-install: fi \ ;; \ *) \ - instfile=`basename $$file` ; \ + instfile=`${BASENAME} $$file` ; \ ${CP} ${_DISTDIR}/$$file ${DATADIR} ; \ ;; \ esac ; \ diff --git a/japanese/libslang/Makefile b/japanese/libslang/Makefile index f95f611..bf2295b 100644 --- a/japanese/libslang/Makefile +++ b/japanese/libslang/Makefile @@ -3,7 +3,7 @@ # Date created: 22 April 1999 # Whom: IWASHITA Yoji <shuna@pop16.odn.ne.jp> # -# $Id$ +# $Id: Makefile,v 1.4 1999/05/01 03:28:05 steve Exp $ # DISTNAME= slang1.2.2_j055 @@ -22,7 +22,7 @@ WRKSRC= ${WRKDIR}/slang post-install: ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib ${ECHO} "===> Installing documents in ${PREFIX}/share/doc/slang" - @mkdir -p ${PREFIX}/share/doc/slang + @${MKDIR} ${PREFIX}/share/doc/slang ${CP} -R ${WRKSRC}/doc/* ${PREFIX}/share/doc/slang ${CP} ${WRKSRC}/slang-j.doc ${PREFIX}/share/doc/slang diff --git a/japanese/xjman-3/Makefile b/japanese/xjman-3/Makefile index 733f618..1194892 100644 --- a/japanese/xjman-3/Makefile +++ b/japanese/xjman-3/Makefile @@ -5,7 +5,7 @@ # japanese/man-doc # Whom: SADA Kenji <sada@FreeBSD.ORG> # -# $Id: Makefile,v 1.3 1999/03/31 16:41:29 sada Exp $ +# $Id: Makefile,v 1.4 1999/05/09 16:49:38 sada Exp $ # DISTNAME= xjman-0.3 @@ -28,7 +28,7 @@ post-extract: .endfor .for i in ${MANSECS} @cd ${WRKSRC}/man$i; \ - ls *.$ix|awk 'BEGIN{printf"MAN$i ="}{printf"\\\n\t%s",$$0}' >Makefile; \ + ls *.$ix|${AWK} 'BEGIN{printf"MAN$i ="}{printf"\\\n\t%s",$$0}' >Makefile; \ ${ECHO} >>Makefile; \ ${ECHO} pages-list: >>${WRKSRC}/man$i/Makefile; \ ${ECHO} " @\$${ECHO} \$${MAN$i}" >>${WRKSRC}/man$i/Makefile; \ diff --git a/japanese/xjman/Makefile b/japanese/xjman/Makefile index 733f618..1194892 100644 --- a/japanese/xjman/Makefile +++ b/japanese/xjman/Makefile @@ -5,7 +5,7 @@ # japanese/man-doc # Whom: SADA Kenji <sada@FreeBSD.ORG> # -# $Id: Makefile,v 1.3 1999/03/31 16:41:29 sada Exp $ +# $Id: Makefile,v 1.4 1999/05/09 16:49:38 sada Exp $ # DISTNAME= xjman-0.3 @@ -28,7 +28,7 @@ post-extract: .endfor .for i in ${MANSECS} @cd ${WRKSRC}/man$i; \ - ls *.$ix|awk 'BEGIN{printf"MAN$i ="}{printf"\\\n\t%s",$$0}' >Makefile; \ + ls *.$ix|${AWK} 'BEGIN{printf"MAN$i ="}{printf"\\\n\t%s",$$0}' >Makefile; \ ${ECHO} >>Makefile; \ ${ECHO} pages-list: >>${WRKSRC}/man$i/Makefile; \ ${ECHO} " @\$${ECHO} \$${MAN$i}" >>${WRKSRC}/man$i/Makefile; \ |