mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
6977e13fef
Now it works with old C++ headers on 9.x. - Update project URL in pkg-descr. MFH: 2015Q3
33 lines
719 B
Makefile
33 lines
719 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mdds
|
|
PORTVERSION= 0.12.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://kohei.us/files/mdds/src/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= office@FreeBSD.org
|
|
COMMENT= Multi-dimensional data index algorithm
|
|
|
|
LICENSE= MIT
|
|
|
|
PROJECTHOST= multidimalgorithm
|
|
|
|
USES= tar:bzip2
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
do-configure:
|
|
@${SED} -e 's|@prefix@|${PREFIX}|' \
|
|
-e 's|@includedir@|$${prefix}/include|' \
|
|
-e 's|@VERSION@|${PORTVERSION}|' \
|
|
${WRKSRC}/misc/mdds.pc.in > ${WRKSRC}/misc/mdds.pc
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} include ${STAGEDIR}${PREFIX}
|
|
${INSTALL_DATA} ${WRKSRC}/misc/mdds.pc \
|
|
${STAGEDIR}${PREFIX}/libdata/pkgconfig
|
|
|
|
.include <bsd.port.mk>
|