summaryrefslogtreecommitdiff
path: root/textproc/estraier/Makefile
blob: 518995fa1eec7c50a91b30382326b0fe4ff95be1 (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
# Created by: Michael Johnson <ahze@ahze.net>
# $FreeBSD$

PORTNAME=	estraier
PORTVERSION=	1.2.30
PORTREVISION=	2
CATEGORIES=	textproc
MASTER_SITES=	http://fallabs.com/estraier/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Full-text search system for personal use

LIB_DEPENDS=	libqdbm.so:${PORTSDIR}/databases/qdbm

OPTIONS_DEFINE=	CHASEN MECAB KAKASI
OPTIONS_DEFAULT=	KAKASI
CHASEN_DESC=	Japanese Morphological Analysis Support
MECAB_DESC=	Part-of-Speech and Morphological Analyzer
KAKASI_DESC=	Language processing filter/converter

USES=		iconv
GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--with-sysqdbm \
		--enable-dlfilter \
		--enable-devel
CPPFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-lpthread -L${LOCALBASE}/include

CHASEN_LIB_DEPENDS=	libchasen.so:${PORTSDIR}/japanese/chasen-base
CHASEN_CONFIGURE_ENABLE=	chasen

KAKASI_LIB_DEPENDS=	libkakasi.so:${PORTSDIR}/japanese/kakasi
KAKASI_CONFIGURE_ENABLE=	kakasi

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MMECAB} && ${ARCH} == "i386"
LIB_DEPENDS+=	libmecab.so:${PORTSDIR}/japanese/mecab
CONFIGURE_ARGS+=	--enable-mecab
.endif

post-patch:
	@${REINPLACE_CMD} -e \
		's|-lc ||g' ${WRKSRC}/configure
	@${REINPLACE_CMD} -e \
		's|-O2|@CFLAGS@|g ; \
		 s|HOME|LOCALBASE|g ; \
		 s|:/usr/local/lib||g ; \
		 s|-I/usr/local/include||g ; \
		 s|-L/usr/local/lib|-lpthread|g' ${WRKSRC}/Makefile.in

post-install:
.for file in estindex estmbtomh estserver estsiutil estxview
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${file}
.endfor

.include <bsd.port.mk>