blob: fa0fa77d4f63dbf33f096b5b05d7cfba4d08a0f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# New ports collection makefile for: xapian-core
# Date created: 5 November 2005
# Whom: J.F. Dockes
#
# $FreeBSD$
#
PORTNAME= xapian-core
PORTVERSION= 1.0.2
CATEGORIES= databases
MASTER_SITES= http://www.oligarchy.co.uk/xapian/${PORTVERSION}/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= miwi
MAINTAINER= jean-francois.dockes@wanadoo.fr
COMMENT= A probabilistic text search database engine
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
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
post-install:
.for file in delve quest copydatabase
${INSTALL_PROGRAM} ${WRKSRC}/examples/.libs/${file} ${PREFIX}/bin/xapian-${file}
.endfor
.ifdef(NOPORTDOCS)
${RM} -rf ${DOCSDIR}
.endif
.include <bsd.port.mk>
|