aboutsummaryrefslogtreecommitdiffstats
path: root/japanese/otojiro-fpw/Makefile
blob: 12c33704c0ddde3da1fcc83554c13c577c4f9340 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# New ports collection makefile for:    OTOJIRO Dictionary - JIS X 4081 version
# Date created:         2002.9.9
# Whom:         Satoshi Taoka <taoka@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   otojiro-fpw
PORTVERSION=    1.0.a
PORTREVISION=   4
CATEGORIES= japanese
MASTER_SITES=   http://openlab.ring.gr.jp/edict/fpw/dist/eijiro/ \
        http://member.nifty.ne.jp/~satomii/freepwing/archive/
DISTNAME=   ${PORTNAME}${PORTVERSION:S/.a/a/}-src

MAINTAINER= ports@FreeBSD.org
COMMENT=    OTOJIRO English - Japanese Dictionary (EPWING V1 format)

DEPRECATED= No more public distfiles
EXPIRATION_DATE=    2012-10-20

EXTRACT_DEPENDS=${LOCALBASE}/share/freepwing/fpwutils.mk:${PORTSDIR}/japanese/freepwing
BUILD_DEPENDS=  ${LOCALBASE}/libexec/freepwing/catdump:${PORTSDIR}/japanese/freepwing \
        ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode

MANUAL_PACKAGE_BUILD=Needs data from CDROM
RESTRICTED= "The original dictionary is not free"
USE_GMAKE=  yes
USE_PERL5=  yes
WRKSRC=     ${WRKDIR}/otojiro-fpw${PORTVERSION:S/.a/a/}
DICT_PATH?= /cdrom
SRCFILE?=   otojiro.txt

# For eijiro included in a book sold by ALC Inc.
# (http://www.alc.co.jp/alcshop/eng/eijiro/)
.include <bsd.port.pre.mk>

DICT_ARCHIVE!=  ${ECHO_CMD} ${DICT_PATH}/eijiro-original/*.exe || ${TRUE}
.if exists(${DICT_ARCHIVE})
EXTRACT_DEPENDS+=   lha:${PORTSDIR}/archivers/lha

CDROM_PATH:=    ${DICT_PATH}
DICT_PATH:= ${WRKDIR}
.else
CDROM_PATH= ${NONEXISTENT}
.endif

MAKE_ENV:=  OTOJIRO_FILE=${DICT_PATH}/${SRCFILE}

post-extract:
    @if [ -f ${CDROM_PATH}/eijiro-original/*.exe ]; then \
      ${MKDIR} ${WRKDIR}; \
      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 Otojiro Dictionary file with the full path"; \
      ${ECHO} "and excecute the following command again:"; \
      ${ECHO} "  make DICT_PATH=${DICT_PATH} SRCFILE=${SRCFILE}"; \
      ${ECHO} ""; \
      ${ECHO} "Notice: DICT_PATH must be a full path to the file."; \
      ${ECHO} "###################################################"; \
      ${FALSE}; \
    fi

post-patch:
    @${REINPLACE_CMD} -e "s/FPWPARSERFLAGS = -- /FPWPARSERFLAGS = /g" ${WRKSRC}/Makefile

do-build:
    cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} fpwmake; \
    fpwmake catalogs

do-install:
    ${MKDIR} ${PREFIX}/share/dict/otojiro-fpw/otojiro/data
    ${MKDIR} ${PREFIX}/share/dict/otojiro-fpw/otojiro/gaiji
    ${INSTALL_DATA} ${WRKSRC}/honmon ${PREFIX}/share/dict/otojiro-fpw/otojiro/data
#   ${INSTALL_DATA} ${WRKSRC}/gai16f \
#       ${PREFIX}/share/dict/otojiro-fpw/otojiro/gaiji
    ${INSTALL_DATA} ${WRKSRC}/gai16h \
        ${PREFIX}/share/dict/otojiro-fpw/otojiro/gaiji
    ${INSTALL_DATA} ${WRKSRC}/catalogs ${PREFIX}/share/dict/otojiro-fpw
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
.for i in readme.txt COPYING
    ${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR}
.endfor
.endif

.include <bsd.port.post.mk>