diff options
author | obache <obache> | 2009-12-19 12:56:45 +0000 |
---|---|---|
committer | obache <obache> | 2009-12-19 12:56:45 +0000 |
commit | 1c2cb69d992fca0a31a874fc11e135ddcc6843da (patch) | |
tree | 1a43c0d52ff39401d6386696855fa36dc5efc749 /databases/lua-tokyocabinet | |
parent | f0c5adee2b046cf85f4ddd0fb8ffb1c790863362 (diff) | |
download | pkgsrc-1c2cb69d992fca0a31a874fc11e135ddcc6843da.tar.gz |
Introduce PKG_OPTIONS for database/tokyocabinet to select compression support
(zlib/bzip2/lzo/lzma and enabled by default for former two).
LZO and LZMA supports are exclusive, optional and should be selected by
user's use-case (priority of data compression ratio, compression speed,
or so on).
Furthermore, Tokyocabinet uses archives/lzmalib for lzma support, but lzmalib
conflicts with archivers/xz.
It means if tokyocabinet is installed with lzma, failed to install xz,
and result in failure of "make extract" for packages using .lzma/.xz distfiles.
This issue also resolved by optionify lzma support and disabled by default.
This changes also make tokyocabinet ABI changes, so bump PKGREVISION
and recursive bump.
OKed to commit in freeze by wiz@.
Diffstat (limited to 'databases/lua-tokyocabinet')
-rw-r--r-- | databases/lua-tokyocabinet/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/databases/lua-tokyocabinet/Makefile b/databases/lua-tokyocabinet/Makefile index 6dc12b04b5f..ff59a613b95 100644 --- a/databases/lua-tokyocabinet/Makefile +++ b/databases/lua-tokyocabinet/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.10 2009/11/30 21:59:37 joerg Exp $ +# $NetBSD: Makefile,v 1.11 2009/12/19 12:56:45 obache Exp $ # DISTNAME= tokyocabinet-lua-1.8 +PKGREVISION= 1 PKGNAME= ${LUA_PKGPREFIX}-${DISTNAME:S/-lua-/-/} CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tokyocabinet/} |