mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 09:19:15 -04:00
- Employ USES for gmake and pkgconfig
- Enable verbose build commands for build farms - Fix BUILD_DEPENDS assignment (= should be +=) - Add an XXX comment about DOCS option logic - Improve on option knobs descriptions a bit - Tighten BROKEN statement, fix pkg-descr Reported by: pointyhat-west
This commit is contained in:
parent
3cdf232e5c
commit
c43371dfb6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=323792
2 changed files with 16 additions and 12 deletions
|
@ -9,28 +9,32 @@ MAINTAINER= kuriyama@FreeBSD.org
|
||||||
COMMENT= Open-source fulltext search engine and column store
|
COMMENT= Open-source fulltext search engine and column store
|
||||||
|
|
||||||
LICENSE= LGPL21
|
LICENSE= LGPL21
|
||||||
|
|
||||||
|
USES= gmake pkgconfig
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
USE_LDCONFIG= yes
|
USE_LDCONFIG= yes
|
||||||
USE_GNOME= pkgconfig
|
CONFIGURE_ARGS= --with-munin-plugins --localstatedir=/var \
|
||||||
USE_GMAKE= yes
|
--with-log-path=/var/log/groonga.log
|
||||||
CONFIGURE_ARGS= --with-munin-plugins
|
|
||||||
CONFIGURE_ARGS+= --with-log-path=/var/log/groonga.log \
|
|
||||||
--localstatedir=/var
|
|
||||||
|
|
||||||
OPTIONS_DEFINE= MECAB SUGGEST
|
.if defined(BATCH) || defined(PACKAGE_BUILDING)
|
||||||
MECAB_DESC= use mecab for morphological analysis
|
CONFIGURE_ARGS+= --disable-silent-rules
|
||||||
SUGGEST_DESC= use suggest for suggest
|
.endif
|
||||||
|
|
||||||
|
OPTIONS_DEFINE= MECAB SUGGEST DOCS
|
||||||
|
MECAB_DESC= Enable morphological analysis
|
||||||
|
SUGGEST_DESC= Enable suggestions
|
||||||
OPTIONS_DEFAULT=MECAB SUGGEST
|
OPTIONS_DEFAULT=MECAB SUGGEST
|
||||||
|
|
||||||
.include <bsd.port.pre.mk>
|
.include <bsd.port.pre.mk>
|
||||||
|
|
||||||
.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
|
.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
|
||||||
BROKEN= Does not compile on ia64, powerpc, or sparc64
|
BROKEN= does not compile on ${ARCH}
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
# We cannot enable this document option until textproc/py-sphinx be upgraded to 1.2.
|
# We cannot enable this option until textproc/py-sphinx be upgraded to 1.2
|
||||||
|
# XXX: but it is enabled now as DOCS are on by default, so what's going on?
|
||||||
.if ${PORT_OPTIONS:MDOCS}
|
.if ${PORT_OPTIONS:MDOCS}
|
||||||
BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx
|
BUILD_DEPENDS+= sphinx-build:${PORTSDIR}/textproc/py-sphinx
|
||||||
MAN1= groonga.1
|
MAN1= groonga.1
|
||||||
.else
|
.else
|
||||||
CONFIGURE_ARGS+= --disable-document
|
CONFIGURE_ARGS+= --disable-document
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
groonga is an open-source fulltext search engine and column store.
|
Groonga is an open-source fulltext search engine and column store.
|
||||||
|
|
||||||
It lets you write high-performance applications that requires fulltext
|
It lets you write high-performance applications that requires fulltext
|
||||||
search.
|
search.
|
||||||
|
|
Loading…
Add table
Reference in a new issue