eec5789455
Release 2.0.2 - 2012/04/29 -------------------------- Improvements ^^^^^^^^^^^^ * [pkg-config] Removed needless MessagePack dependency. * [rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu] * [rpm] Supported zlib and LZO. [#1324] [Patch by IWAI, Masaharu] * [groonga] Improved daemoinzed timing. Groonga server daemonizes after socket is listened. It means that groonga server is ready when groonga server is daemonized. [#1326] * [admin] Supported suggest in groonga administration page. * [dump] Ignored MeCab tokenizer load error. * Supported CMake. * [load] Supported error report when a column value can't be set. * Supported similar search. ``select --filter "column *S 'TEXT'"`` is the similar search syntax. [#1342] * [apt][yum] Changed package sign key. * Supported Ubuntu Precise Pangolin. * [apt] Added a new groonga-keyring deb package for the groonga's package sign key. Fixes ^^^^^ * [deb][rpm] Used ``--bind-address`` option instead of deprecated ``--address`` option. [#1320] [Patch by IWAI, Masaharu] * [deb] Renamed groonga-server package's configuration file to /etc/default/groonga-server from /etc/default/groonga. * [rpm][fedora] Fixed upgrade condition in %post server. [GitHub#11] [Patch by Daiki Ueno] * [rpm] Removed needless change logs. [#1328] [Patch by IWAI, Masaharu] * [deb][rpm] Added missing curl dependency. [GitHub#12] [Patch by IWAI, Masaharu] * [rpm] Removed needleess ruby package dependency from groonga package. [#1330] [Suggested by IWAI, Masaharu] * [deb] Added missing default values to groonga-server's configuration file. * Fixed a crash bug that is caused when searching with updaging very large inverted index. [#1329] * Fixed a bug that strings are compared as characters instead of byte string. [#1340] [Reported by Shinya Kawaji] .. _release-2-0-1: Release 2.0.1 - 2012/03/29 -------------------------- Improvements ^^^^^^^^^^^^ * Supported build in other directory. [#1298] [Reported by Kazuhiko] * [solaris] Supported build on Solaris 11. [Reported by Kazuhiko] * [test] Supported functional test. * [test] Required ``--with-ruby19`` configure option for testing by Ruby. * [dump] Supported records dump for a table that has default tokenizer. * [suggest] Added ``similar_search`` option. * [groonga] Removed deprecated options, ``-a``, ``--address`` and ``--admin-html-path``. * Added more return value checks. [GitHub#9] [Reported by Markus Elfring] * [dat] Supported term extract operation. * Added `logos <http://groonga.org/logo/>`_ . * Updated HTML design. * Renamed ``grntest`` to ``groonga-benchmark``. * Supported ``autogen.sh`` on CentOS 5. * [linux] Added ``vm.overcommit_memory`` kernel parameter value check. [#1289] * ``grn_snip`` uses ``grn_obj`` mechanism. [#1054] Fixes ^^^^^ * Fixed a bug that uninstall task doesn't uninstall installed Ruby scripts. [#1299] [Reported by Kazuhiko] * Added a missing Gemfile. [#1302] [Reported by Kazuhiko] * Fixed a bug that some indexed records aren't found. The feature is only used by mroonga. [#1303] * [groonga] Appended missing ``-id`` to ``--server-id`` option name. * Fixed a bug that latin1 normalization may access unexpected memory.
56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.19 2012/04/29 13:33:06 obache Exp $
|
|
#
|
|
|
|
DISTNAME= groonga-2.0.2
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://packages.groonga.org/source/groonga/
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://groonga.org/
|
|
COMMENT= Fulltext search engine and column store
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
RUBY_VERSION_SUPPORTED= 192 193
|
|
.include "../../lang/ruby/rubyversion.mk"
|
|
DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:../../lang/${RUBY_BASE}
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
# for long file name
|
|
EXTRACT_USING= bsdtar
|
|
|
|
.include "options.mk"
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR}
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
|
|
CONFIGURE_ARGS+= --with-ruby19=${RUBY}
|
|
|
|
PKGCONFIG_OVERRIDE+= groonga.pc.in
|
|
|
|
PKG_SYSCONFSUBDIR= ${PKGBASE}
|
|
|
|
BUILD_DEFS+= VARBASE
|
|
|
|
INSTALL_MAKE_FLAGS+= sysconfdir=${PREFIX}/share/examples
|
|
|
|
CONF_FILES+= share/examples/${PKGBASE}/groonga.conf \
|
|
${PKG_SYSCONFDIR}/groonga.conf
|
|
|
|
OWN_DIRS+= ${VARBASE}/log/${PKGBASE}
|
|
|
|
CHECK_WRKREF_SKIP+= bin/groonga
|
|
CHECK_INTERPRETER_SKIP+= share/groonga/examples/*
|
|
|
|
REPLACE_RUBY+= data/munin/groonga_cpu_time
|
|
REPLACE_RUBY+= data/munin/groonga_disk
|
|
REPLACE_RUBY+= data/munin/groonga_n_records
|
|
REPLACE_RUBY+= data/munin/groonga_query_performance
|
|
REPLACE_RUBY+= data/munin/groonga_status
|
|
.include "../../lang/ruby/replace.mk"
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|