Makefile 637 B

123456789101112131415161718192021222324252627282930
  1. # $OpenBSD: Makefile,v 1.14 2015/06/19 12:44:49 ajacoutot Exp $
  2. COMMENT= scan mailboxes for messages matching a regular expression
  3. DISTNAME= mboxgrep-0.7.9
  4. CATEGORIES= mail
  5. HOMEPAGE= http://www.mboxgrep.org/
  6. # GPLv2
  7. PERMIT_PACKAGE_CDROM= Yes
  8. WANTLIB += bz2 c pcre z
  9. MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mboxgrep/}
  10. LIB_DEPENDS= archivers/bzip2 \
  11. devel/pcre
  12. CONFIGURE_STYLE= gnu dest
  13. CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
  14. LIBS="-L${LOCALBASE}/lib"
  15. # md5.c:122: warning: incompatible implicit declaration of built-in function 'bcopy'
  16. CFLAGS += -DSTDC_HEADERS
  17. NO_TEST= Yes
  18. .include <bsd.port.mk>