Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= bogofilter
  5. PKG_VERSION:= 1.2.4
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 94aee3ced558c2a354547083735f2ba7
  8. PKG_DESCR:= mail filter software
  9. PKG_SECTION:= net/mail
  10. PKG_BUILDDEP:= db
  11. PKG_DEPENDS:= libdb libstdcxx
  12. PKG_URL:= http://bogofilter.sourceforge.net/
  13. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=bogofilter/}
  14. PKG_BUILDDEP_UCLIBC:= libiconv-tiny
  15. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  16. include ${ADK_TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,BOGOFILTER,bogofilter,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. CONFIGURE_ENV+= LIBS="-liconv" \
  19. ac_cv_func_memcmp_working=yes
  20. CONFIGURE_ARGS+= --without-libsqlite3-prefix \
  21. --without-libqdbm-prefix \
  22. --without-libiconv-prefix \
  23. --with-included-gsl \
  24. --disable-static \
  25. --with-libdb-prefix=${STAGING_TARGET_DIR}/usr \
  26. --disable-transactions
  27. bogofilter-install:
  28. ${INSTALL_DIR} ${IDIR_BOGOFILTER}/usr/bin
  29. ${INSTALL_BIN} ${WRKINST}/usr/bin/bogofilter \
  30. ${IDIR_BOGOFILTER}/usr/bin/
  31. include ${ADK_TOPDIR}/mk/pkg-bottom.mk