blob: e476555a0eb71346d46013f058338b640d255867 (
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
|
# New ports collection makefile for: OpenFTS
# Date Created: 15 Aug, 2003
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= openfts
PORTVERSION= 0.34
PORTREVISION= 1
CATEGORIES= textproc perl5
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= openfts
DISTNAME= Search-OpenFTS-${PORTVERSION}
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Open Source Full Text Search engine
EXTRACT_DEPENDS=/nonexistent:${PORTSDIR}/databases/postgresql7:configure
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg
PERL_CONFIGURE= yes
USE_REINPLACE= yes
MAN3= Search::OpenFTS.3 Search::OpenFTS::Base.3 \
Search::OpenFTS::Dict::PorterEng.3 Search::OpenFTS::Dict::Snowball.3 \
Search::OpenFTS::Dict::UnknownDict.3 Search::OpenFTS::Index.3 \
Search::OpenFTS::Morph::ISpell.3 Search::OpenFTS::Parser.3
PGSRC= `cd ${PORTSDIR}/databases/postgresql7; ${MAKE} -VWRKSRC`/contrib
PGMAKE= ${GMAKE} docdir=${PREFIX}/share/doc
post-extract:
cd ${WRKSRC} && ${CP} -r pgsql_contrib_openfts ${PGSRC}/
post-build:
cd ${PGSRC}/tsearch && ${GMAKE} && \
${REINPLACE_CMD} 's,$$libdir,${PREFIX}/lib/postgresql,' tsearch.sql
cd ${PGSRC}/pgsql_contrib_openfts && ${GMAKE}
post-install:
cd ${PGSRC}/tsearch && ${PGMAKE} install
cd ${PGSRC}/pgsql_contrib_openfts && ${PGMAKE} install
# Sample DB initialization.
DBNAME?= openfts
create-database:
createdb ${DBNAME}
cd ${PREFIX}/share/postgresql/contrib && \
psql ${DBNAME} < tsearch.sql && \
psql ${DBNAME} < openfts.sql
.include <bsd.port.mk>
|