701aa3bcf8
Changes: http://www.boost.org/users/history/version_1_72_0.html PR: 241449 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D22136
34 lines
724 B
Makefile
34 lines
724 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= lucene++
|
|
PORTVERSION= 3.0.7
|
|
DISTVERSIONPREFIX= rel_
|
|
PORTREVISION= 14
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= arved@FreeBSD.org
|
|
COMMENT= C++ port of the Lucene library
|
|
|
|
LICENSE= LGPL3
|
|
LICENSE_FILE= ${WRKSRC}/LGPL.license
|
|
|
|
LIB_DEPENDS= libboost_system.so:devel/boost-libs
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= luceneplusplus
|
|
GH_PROJECT= LucenePlusPlus
|
|
USES= cmake compiler:c++11-lang
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} "/cotire/d" ${WRKSRC}/src/contrib/CMakeLists.txt \
|
|
${WRKSRC}/src/core/CMakeLists.txt \
|
|
${WRKSRC}/src/test/CMakeLists.txt
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/include &&${INSTALL_DATA} *.h \
|
|
${STAGEDIR}${PREFIX}/include/lucene++/
|
|
|
|
.include <bsd.port.post.mk>
|