diff options
author | Satoshi Taoka <taoka@FreeBSD.org> | 2002-09-15 05:48:30 +0000 |
---|---|---|
committer | Satoshi Taoka <taoka@FreeBSD.org> | 2002-09-15 05:48:30 +0000 |
commit | 8ede6d055bdf6214746e6fad0ef90b2a978e2ee2 (patch) | |
tree | aa211293763c187535474a2749fe69820ca48048 /japanese/waeijiro-fpw | |
parent | eda1c349aeb133fcd833947a6c792d516f501e74 (diff) | |
download | ports-8ede6d055bdf6214746e6fad0ef90b2a978e2ee2.tar.gz ports-8ede6d055bdf6214746e6fad0ef90b2a978e2ee2.zip |
Notes
Diffstat (limited to 'japanese/waeijiro-fpw')
-rw-r--r-- | japanese/waeijiro-fpw/Makefile | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/japanese/waeijiro-fpw/Makefile b/japanese/waeijiro-fpw/Makefile index b53758e095b2..9f3c772444e0 100644 --- a/japanese/waeijiro-fpw/Makefile +++ b/japanese/waeijiro-fpw/Makefile @@ -14,7 +14,8 @@ MASTER_SITES= http://www.dsl.gr.jp/~tf/ MAINTAINER= taoka@FreeBSD.org -BUILD_DEPENDS= ${LOCALBASE}/share/doc/freepwing/fpwutils.mk:${PORTSDIR}/japanese/freepwing \ +BUILD_DEPENDS= ${LOCALBASE}/libexec/freepwing/catdump:${PORTSDIR}/japanese/freepwing \ + ${LOCALBASE}/share/doc/freepwing/fpwutils.mk:${PORTSDIR}/japanese/freepwing \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Jcode.pm:${PORTSDIR}/japanese/p5-Jcode RESTRICTED= "The original dictionary is not free" @@ -22,10 +23,24 @@ NO_PACKAGE= "The original dictionary is not free" USE_GMAKE= yes DICT_PATH?= /cdrom SRCFILE?= waeiji52.txt -MAKE_ENV= SRC_DICT=${DICT_PATH}/${SRCFILE} + +# For eijiro included in a book sold by ALC Inc. +# (http://www.alc.co.jp/alcshop/eng/eijiro/) +.if exists(${DICT_PATH}/eijiro-original) +BUILD_DEPENDS+= lha:${PORTSDIR}/archivers/lha + +CDROM_PATH:= ${DICT_PATH} +DICT_PATH:= ${WRKDIR} +.else +CDROM_PATH= ${NONEXISTENT} +.endif + +MAKE_ARGS:= SRC_DICT=${DICT_PATH}/${SRCFILE} post-extract: - @if [ ! -f ${DICT_PATH}/${SRCFILE} ]; then \ + @if [ -f ${CDROM_PATH}/eijiro-original/*.exe ]; then \ + lha xiw=${WRKDIR} ${CDROM_PATH}/eijiro-original/*.exe '*/${SRCFILE}'; \ + elif [ ! -f ${DICT_PATH}/${SRCFILE} ]; then \ ${ECHO} "###################################################"; \ ${ECHO} "I cannot find a file ${DICT_PATH}/${SRCFILE}"; \ ${ECHO} "Specify the Waeijiro Dictionary file with the full path"; \ |