ab0530311a
handling large repositories like NetBSD src. Problem found by riz@, fix from mainline a:njs/d:2006-09-22T07:01:26, tested by me. bump rev to nb1 ChangeLog: 2006-09-21 Nathaniel Smith <njs@pobox.com> * lru_writeback_cache.hh (clean_insert): Correct the cache overflow logic so as to _actually_ never remove the last element. Add an invariant to verify this. (insert_dirty): Add an invariant here too.
38 lines
897 B
Makefile
38 lines
897 B
Makefile
# $NetBSD: Makefile,v 1.29 2006/09/22 11:14:05 dan Exp $
|
|
#
|
|
|
|
DISTNAME= monotone-0.30
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://monotone.ca/downloads/
|
|
PKGREVISION= 1
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://monotone.ca/
|
|
COMMENT= Free distributed version control system
|
|
|
|
GCC_REQD+= 3.0
|
|
GNU_CONFIGURE= yes
|
|
INFO_FILES= # PLIST
|
|
UNLIMIT_RESOURCES+= datasize
|
|
USE_TOOLS+= gmake makeinfo
|
|
USE_LANGUAGES= c c++
|
|
USE_PKGLOCALEDIR= yes
|
|
|
|
CONFIGURE_ARGS+= BOOST_SUFFIX=-mt
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.monotone
|
|
PKG_SUPPORTED_OPTIONS= inet6
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/boost-libs/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|