mdds 0.5.4 * segment_tree * fixed build breakage, to allow it to be buildable when UNIT_TEST is not defined. * fixed a crasher with MSVC when comparing iterators of empty search_result instances. * point_quad_tree * fixed a bug where de-referencing copied search_result iterators would return an uninitialized node data.
35 lines
963 B
Makefile
35 lines
963 B
Makefile
# $NetBSD: Makefile,v 1.7 2012/03/12 15:56:58 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= mdds_0.5.4
|
|
PKGNAME= ${DISTNAME:S/_/-/}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://multidimalgorithm.googlecode.com/files/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://code.google.com/p/multidimalgorithm/
|
|
COMMENT= Collection of multi-dimensional data structure and indexing algorithms
|
|
LICENSE= mit
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c++
|
|
GNU_CONFIGURE= yes
|
|
INSTALLATION_DIRS= include/mdds/hash_container
|
|
|
|
do-build:
|
|
|
|
do-install:
|
|
for i in ${WRKSRC}/include/mdds/*.*; do \
|
|
${INSTALL_DATA} $$i ${DESTDIR}${PREFIX}/include/mdds; \
|
|
done
|
|
for i in ${WRKSRC}/include/mdds/hash_container/*.*; do \
|
|
${INSTALL_DATA} $$i \
|
|
${DESTDIR}${PREFIX}/include/mdds/hash_container; \
|
|
done
|
|
|
|
BUILDLINK_DEPMETHOD.boost-headers?= build
|
|
.include "../../devel/boost-headers/buildlink3.mk"
|
|
.include "../../devel/boost-libs/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|