blob: 1d2fae272f96d26c3d4001e6dcdcd096fb72dc8d (
plain)
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
|
# New ports collection makefile for: Ludia
# Date created: January 5, 2008
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= ludia
PORTVERSION= 1.5.1
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP}
MASTER_SITE_SUBDIR= ludia/32461
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= PostgreSQL extension for full-text search indexing
PGSQL_PORT= ${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
RUN_DEPENDS= ${LOCALBASE}/bin/postmaster:${PGSQL_PORT} \
senna-cfg:${PORTSDIR}/textproc/senna
BUILD_DEPENDS= ${LOCALBASE}/bin/postmaster:${PGSQL_PORT} \
senna-cfg:${PORTSDIR}/textproc/senna
GNU_CONFIGURE= yes
USE_AUTOTOOLS= libtool:15
USE_PGSQL= yes
.include <bsd.port.pre.mk>
# let configure find postgres stuff in non-standard places
CONFIGURE_ARGS+=--with-pgconfigdir=${LOCALBASE}/bin \
--with-pgbindir=${LOCALBASE}/bin \
--with-pgincludedir=${LOCALBASE}/include \
--with-pgincludeserverdir=${LOCALBASE}/include/postgresql/server \
--with-pglibdir=${LOCALBASE}/lib \
--with-pgpkglibdir=${LOCALBASE}/lib/postgresql \
--with-pgsharedir=${LOCALBASE}/share/postgresql
.include <bsd.port.post.mk>
|