pkgsrc/textproc/xapian/buildlink3.mk
schmonz a3b44764a9 Initial import of Xapian, an Open Source Search Engine Library,
released under the GPL. It's written in C++, with bindings to allow
use from Perl, Python, PHP, Java, Tcl, C# and Ruby (so far!)

Xapian is a highly adaptable toolkit which allows developers to
easily add advanced indexing and search facilities to their own
applications. It supports the Probabilistic Information Retrieval
model and also supports a rich set of boolean query operators.

If you're after a packaged search engine for your website, you
should take a look at Omega: an application we supply built upon
Xapian. Unlike most other website search solutions, Xapian's
versatility allows you to extend Omega to meet your needs as they
grow.
2008-07-26 23:35:05 +00:00

19 lines
570 B
Makefile

# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/07/26 23:35:05 schmonz Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
XAPIAN_BUILDLINK3_MK:= ${XAPIAN_BUILDLINK3_MK}+
.if ${BUILDLINK_DEPTH} == "+"
BUILDLINK_DEPENDS+= xapian
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nxapian}
BUILDLINK_PACKAGES+= xapian
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}xapian
.if ${XAPIAN_BUILDLINK3_MK} == "+"
BUILDLINK_API_DEPENDS.xapian+= xapian>=1.0.7
BUILDLINK_PKGSRCDIR.xapian?= ../../textproc/xapian
.endif # XAPIAN_BUILDLINK3_MK
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}