summaryrefslogtreecommitdiff
path: root/textproc/hyperestraier/Makefile
blob: ee21a34adeda5535bd15d4ba81742d59c5e2710b (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
# New ports collection makefile for:	hyperestraier
# Date created:		2005-09-11
# Whom:			Michael Johnson <ahze@FreeBSD.org>
#
# $FreeBSD$
#    $MCom: ports-stable/textproc/hyperestraier/Makefile,v 1.3 2006/10/17 11:45:45 ahze Exp $

PORTNAME=	hyperestraier
PORTVERSION=	1.4.13
PORTREVISION=	1
CATEGORIES=	textproc
MASTER_SITES=	SF

MAINTAINER=	ports@FreeBSD.org
COMMENT=	A full-text search system

BUILD_DEPENDS=	qdbm>=1.8.77:${PORTSDIR}/databases/qdbm
# check configure for min version of qdbm.
LIB_DEPENDS=	qdbm.14:${PORTSDIR}/databases/qdbm

USE_ICONV=	yes
USE_LDCONFIG=	yes
GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--enable-bzip2 --disable-zlib
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
		LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"

OPTIONS=	LZO "Enable lzo support" off \
		MECAB "Enable mecab support" off

MAN1=		estcall.1 estcmd.1 estconfig.1 estmaster.1 estwaver.1
MAN3=		estnode.3 estraier.3

.include <bsd.port.pre.mk>

.if defined(WITH_LZO)
CONFIGURE_ARGS+=	--enable-lzo
LIB_DEPENDS+=	lzo2:${PORTSDIR}/archivers/lzo2
.endif

.if defined(WITH_MECAB)
CONFIGURE_ARGS+=	--enable-mecab
LIB_DEPENDS+=	mecab:${PORTSDIR}/japanese/mecab
RUN_DEPENDS+=	${LOCALBASE}/lib/mecab/dic/ipadic/matrix.bin:${PORTSDIR}/japanese/mecab-ipadic
.endif

post-patch:
	@${REINPLACE_CMD} -e 's|@libdir@/pkgconfig|${PREFIX}/libdata/pkgconfig|' \
		${WRKSRC}/Makefile.in
	${RM} -f ${WRKSRC}/doc/intro-en.html~ ${WRKSRC}/doc/intro-ja.html~

.include <bsd.port.post.mk>