freebsd-ports/databases/xapian-core10/Makefile
Jimmy Olgeni 76c7f8fbe6 Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories D-F.

CR:		D196
Approved by:	portmgr (bapt)
2014-06-10 07:39:01 +00:00

42 lines
955 B
Makefile

# Created by: J.F. Dockes
# $FreeBSD$
PORTNAME= xapian-core10
PORTVERSION= 1.0.23
CATEGORIES= databases
MASTER_SITES= http://oligarchy.co.uk/xapian/${PORTVERSION}/
DISTNAME= ${PORTNAME:S/10$//}-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Probabilistic text search database engine
LICENSE= GPLv2
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
OPTIONS_DEFINE= SSE2
SSE2_DESC= Use SSE2 for floating point
MAN1= quartzcheck.1 quartzcompact.1 quartzdump.1 \
xapian-check.1 xapian-compact.1 xapian-config.1 \
xapian-progsrv.1 xapian-tcpsrv.1 xapian-inspect.1
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME:S/10$//}
NO_STAGE= yes
.include <bsd.port.options.mk>
.if empty(PORT_OPTIONS:MSSE2)
CONFIGURE_ARGS+= --disable-sse
.endif
post-install:
.for file in delve quest copydatabase
${INSTALL_PROGRAM} ${WRKSRC}/examples/.libs/${file} ${PREFIX}/bin/xapian-${file}
.endfor
.if empty(PORT_OPTIONS:MDOCS)
${RM} -rf ${DOCSDIR}
.endif
.include <bsd.port.mk>