aboutsummaryrefslogtreecommitdiff
path: root/textproc/openfts/Makefile
blob: 13f9d60c9b09e3ba2ededb218ef178f029fa6217 (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
PORTNAME=	openfts
PORTVERSION=	0.40
PORTREVISION=	5
CATEGORIES=	textproc perl5
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/OpenFTS-perl%2C%20v${PORTVERSION}
DISTNAME=	Search-OpenFTS-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Open Source Full Text Search engine

RUN_DEPENDS=	p5-DBD-Pg>=0:databases/p5-DBD-Pg

USES+=		perl5 pgsql shebangfix
SHEBANG_FILES=	examples/*.pl examples/parser/*.pl
USE_PERL5=	configure
WANT_PGSQL=	contrib

OPTIONS_DEFINE=	DOCS EXAMPLES

PORTDOCS=	Changes INSTALL README primer.html

post-install:
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
	@${CP} -R ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
	@${ECHO_MSG} "===> Examples installed in ${STAGEDIR}${EXAMPLESDIR}."

	@${CP} -p ${WRKSRC}/doc/primer.html ${WRKSRC}
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
	@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
	@${ECHO_MSG} "===> Documentation installed in ${STAGEDIR}${DOCSDIR}."

# Sample DB initialization.
DBNAME?=	openfts
create-database:
	createdb ${DBNAME}
	cd ${LOCALBASE}/share/postgresql/contrib && \
		psql ${DBNAME} < tsearch2.sql && \
		psql ${DBNAME} < openfts.sql

.include <bsd.port.mk>