blob: dd12e9288a342c8f9cc37eedce0fd4f4a77c6127 (
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
|
# New ports collection makefile for: mysqlbigram
# Date created: 2007-07-25
# Whom: Gea-Suan Lin <gslin@gslin.org>
#
# $FreeBSD$
#
PORTNAME= mysqlbigram
PORTVERSION= 1.0.1
CATEGORIES= databases
MASTER_SITES= http://mysqlbigram.googlepages.com/
DISTFILES= bi_gram-src-${PORTVERSION}${EXTRACT_SUFX}
MAINTAINER= gslin@gslin.org
COMMENT= Simple N-Gram (bi-gram) FULLTEXT parser plugin for MySQL 5.1+
BROKEN= does not compile
DEPRECATED= has been broken for more than 6 months
EXPIRATION_DATE=2009-01-19
CFLAGS+= -I"${LOCALBASE}/include" -I"${LOCALBASE}/include/mysql"
CONFIGURE_ENV+= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
GNU_CONFIGURE= yes
IGNORE_WITH_MYSQL= 323 40 41 50
LDFLAGS+= -L${LOCALBASE}/lib
USE_MYSQL= yes
WANT_MYSQL_VER?= 51
WRKSRC= ${WRKDIR}/bi_gram
.include <bsd.port.mk>
|