9befed9df1
matching library with some exciting features such as approximate (fuzzy) matching. It includes a version of the agrep (approximate grep) command line tool for approximate regexp matching in the style of grep. ok, simon@
34 lines
683 B
Makefile
34 lines
683 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/01/29 20:14:29 kili Exp $
|
|
|
|
COMMENT= "lightweight regexp matching library with additional features"
|
|
|
|
DISTNAME= tre-0.7.5
|
|
EXTRACT_SUFX= .tar.bz2
|
|
CATEGORIES= textproc
|
|
|
|
HOMEPAGE= http://laurikari.net/tre/
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
MAINTAINER= Matthias Kilian <kili@openbsd.org>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
SHARED_LIBS+= tre 6.4 # .6.4
|
|
|
|
WANTLIB= c
|
|
|
|
MODULES= devel/gettext converters/libiconv
|
|
|
|
LIB_DEPENDS= utf8.>=1::misc/libutf8
|
|
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --enable-static --with-libutf8=${LOCALBASE}
|
|
|
|
.include <bsd.port.mk>
|