1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00
freebsd-ports/databases/pgroonga/Makefile
Muhammad Moinur Rahman e1e75b01df databases/pgroonga: Update version 2.2.5=>2.2.6
- Dropped support for pgsql 9.5

Relnotes:	https://pgroonga.github.io/news/#version-2-2-6
2020-07-10 18:25:49 +00:00

41 lines
1.0 KiB
Makefile

# Created by: Muhammad Moinur Rahman <bofh@FreeBSD.org>
# $FreeBSD$
PORTNAME= pgroonga
PORTVERSION= 2.2.6
CATEGORIES= databases textproc
MASTER_SITES= http://packages.groonga.org/source/pgroonga/
MAINTAINER= bofh@FreeBSD.org
COMMENT= Open-source fulltext search engine for PostGRESQL
LICENSE= PostgreSQL
LIB_DEPENDS= libgroonga.so:textproc/groonga
USES= gmake pgsql:9.6+ pkgconfig
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/groonga
LLD_UNSAFE= yes
SUB_FILES= pkg-message
OPTIONS_DEFINE= MECAB
MECAB_DESC= Use MeCab as a tokenizer
MECAB_BUILD_DEPENDS= mecab-ipadics>=0.996:japanese/mecab-ipadic
.include <bsd.port.pre.mk>
# With PG11+ some scripts are only installed when they are common to
# all PG versions.
.if ${PGSQL_VER:R} < 11
PLIST_SUB+= OLDPG="@comment "
.else
PLIST_SUB+= OLDPG=""
.endif
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pgroonga.so
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pgroonga_check.so
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pgroonga_database.so
.include <bsd.port.post.mk>