29c43a6dfd
monotone is a free distributed version control system. It provides a simple, single-file transactional version store, with fully disconnected operation and an efficient peer-to-peer synchronization protocol. ok kili@, niallo
33 lines
797 B
Makefile
33 lines
797 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/05/03 13:23:44 alek Exp $
|
|
|
|
COMMENT= "distributed version control system"
|
|
|
|
VERSION= 0.34
|
|
DISTNAME= monotone-${VERSION}
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://monotone.ca/
|
|
|
|
MAINTAINER= Aleksander Piotrowski <alek@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
WANTLIB += c m pthread stdc++ z
|
|
|
|
MASTER_SITES= ${HOMEPAGE}downloads/${VERSION}/
|
|
|
|
BUILD_DEPENDS= :boost-headers-*:devel/boost,-main
|
|
LIB_DEPENDS= boost_filesystem.>=0,boost_regex.>=0::devel/boost,-libs
|
|
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \
|
|
CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
|
|
CFLAGS="${CFLAGS} -I${LOCALBASE}/include"
|
|
REGRESS_FLAGS= HOME=${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|