30 lines
625 B
Makefile
30 lines
625 B
Makefile
# $OpenBSD: Makefile,v 1.15 2019/07/12 21:02:22 sthen Exp $
|
|
|
|
COMMENT= scan mailboxes for messages matching a regular expression
|
|
|
|
DISTNAME= mboxgrep-0.7.9
|
|
CATEGORIES= mail
|
|
|
|
HOMEPAGE= http://www.mboxgrep.org/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += bz2 c pcre z
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mboxgrep/}
|
|
|
|
LIB_DEPENDS= archivers/bzip2 \
|
|
devel/pcre
|
|
|
|
CONFIGURE_STYLE= gnu dest
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
|
|
# md5.c:122: warning: incompatible implicit declaration of built-in function 'bcopy'
|
|
CFLAGS += -DSTDC_HEADERS
|
|
|
|
NO_TEST= Yes
|
|
|
|
.include <bsd.port.mk>
|