aboutsummaryrefslogtreecommitdiff
path: root/japanese/eb/Makefile
blob: bb0749c3cf5edf6a0f4fdc5aeaea6749069d8a6f (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Created by: Motoyuki Kasahara <m-kasahr@sra.co.jp>
# $FreeBSD$

PORTNAME=	eb
PORTVERSION=	4.4.3
CATEGORIES=	japanese
MASTER_SITES=	ftp://ftp.sra.co.jp/pub/misc/eb/ \
		ftp://ftp.sra.co.jp/pub/misc/eb/old/eb-${PORTVERSION:C/^([0-9]+)\.([0-9]+).*/\1.\2/}/
DISTFILES=	${EBFILES} \
		${LISTFILES} \
		${APPENDIXFILES}
EXTRACT_ONLY=	${EBFILES}

MAINTAINER=	yasu@utahime.org
COMMENT=	C library for accessing EB, EBG, EBXA, and EPWING CD-ROM dictionaries

LICENSE=	BSD

EBFILES=	${DISTNAME}${EXTRACT_SUFX}
APPENDIXFILES=	appendix/cencro-1.0.tar.gz \
		appendix/chujiten-2.3.tar.gz \
		appendix/chujiten2-2.0.tar.gz \
		appendix/chujiten6-2.3.tar.gz \
		appendix/colloc-2.0.tar.gz \
		appendix/crownfj-2.0.tar.gz \
		appendix/crownfj2-1.0.tar.gz \
		appendix/crowngj-1.0.tar.gz \
		appendix/daihyakka-1.0.tar.gz \
		appendix/daijirin-2.0.tar.gz \
		appendix/dd75-2.0.tar.gz \
		appendix/gendai2000-1.0.tar.gz \
		appendix/genius-1.0.tar.gz \
		appendix/genius2-1.1.tar.gz \
		appendix/global-2.0.tar.gz \
		appendix/heritage-2.2.tar.gz \
		appendix/hyogen-1.0.tar.gz \
		appendix/izumi-2.0.tar.gz \
		appendix/jitenban-2.4.tar.gz \
		appendix/jitenban97-2.1.tar.gz \
		appendix/kanjigen-2.0.tar.gz \
		appendix/kanjigen2-2.0.tar.gz \
		appendix/kojien-2.3.tar.gz \
		appendix/kojien2-2.0.tar.gz \
		appendix/kojien4-2.2.tar.gz \
		appendix/oxford-2.0.tar.gz \
		appendix/plus-2.0.tar.gz \
		appendix/readers-2.2.tar.gz \
		appendix/readers2-2.0.tar.gz \
		appendix/ruigigo-1.0.tar.gz \
		appendix/superdic98-1.0.tar.gz

DIST_SUBDIR=	eb

PORTDOCS=	eb-01.html eb-02.html eb-03.html eb-04.html eb-05.html eb-06.html \
		eb-07.html eb-08.html eb-09.html eb-10.html eb-11.html eb-12.html \
		eb-13.html eb-14.html eb.html ebappendix-01.html ebappendix-02.html \
		ebappendix-03.html ebappendix-04.html ebappendix.html ebfont-01.html \
		ebfont-02.html ebfont-03.html ebfont-04.html ebfont.html \
		ebinfo-01.html ebinfo-02.html ebinfo-03.html ebinfo-04.html \
		ebinfo-05.html ebinfo.html ebrefile-01.html ebrefile-02.html \
		ebrefile-03.html ebrefile.html ebstopcode-01.html ebstopcode-02.html \
		ebstopcode-03.html ebstopcode.html ebzip-01.html ebzip-02.html \
		ebzip-03.html ebzip-04.html ebzip-05.html ebzip-06.html ebzip-07.html \
		ebzip-08.html ebzip-09.html ebzip-10.html ebzip.html

USE_AUTOTOOLS=	libtool
USE_BZIP2=	yes
USE_GETTEXT=	yes
USE_PERL5=	yes
GNU_CONFIGURE=	yes
USE_LDCONFIG=	yes
CONFIGURE_ARGS=	--with-pkgdocdir=${DOCSDIR}

OPTIONS_DEFINE=	DOCS NLS

APPENDIXDIR=	${DATADIR}/appendix

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT=	yes
CONFIGURE_ARGS+=	--enable-nls \
		--with-gettext-includes=${LOCALBASE}/include \
		--with-gettext-libraries=${LOCALBASE}/lib \
		--with-iconv-includes=${LOCALBASE}/include \
		--with-iconv-libraries=${LOCALBASE}/lib
PLIST_SUB=	NLS=""
.else
PLIST_SUB=	NLS="@comment "
.endif

post-extract:
	${RM} -fr ${WRKSRC}/zlib
	${MKDIR} ${WRKDIR}/appendix
.for file in ${APPENDIXFILES}
	${TAR} --exclude CVS -C ${WRKDIR}/appendix -zxmf \
	${DISTDIR}/${DIST_SUBDIR}/${file}
.endfor

post-install:
	(cd ${WRKDIR}/appendix && ${COPYTREE_SHARE} \* ${APPENDIXDIR} )
.if ${PORT_OPTIONS:MDOCS}
	@${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
	${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.mk>