Makefile 795 B

123456789101112131415161718192021222324252627282930313233
  1. # $OpenBSD: Makefile,v 1.15 2016/06/03 12:49:15 dcoppa Exp $
  2. COMMENT = fast NTLM/NTLMv2 authenticating HTTP proxy
  3. DISTNAME = cntlm-0.93beta5
  4. REVISION = 2
  5. CATEGORIES = www
  6. HOMEPAGE = http://cntlm.sourceforge.net/
  7. MAINTAINER = David Coppa <dcoppa@openbsd.org>
  8. # GPLv2+
  9. PERMIT_PACKAGE_CDROM = Yes
  10. WANTLIB = c pthread
  11. MASTER_SITES = http://distfiles.gentoo.org/distfiles/
  12. MAKE_FLAGS = CC="${CC}" SYSCONFDIR="${SYSCONFDIR}/cntlm"
  13. CONFIGURE_STYLE = simple
  14. ALL_TARGET = cntlm
  15. USE_GMAKE = Yes
  16. NO_TEST = Yes
  17. do-install:
  18. ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cntlm
  19. ${INSTALL_PROGRAM} ${WRKBUILD}/cntlm ${PREFIX}/sbin/
  20. ${INSTALL_MAN} ${WRKSRC}/doc/cntlm.1 ${PREFIX}/man/man1/
  21. ${INSTALL_DATA} ${WRKSRC}/doc/cntlm.conf ${PREFIX}/share/examples/cntlm/
  22. .include <bsd.port.mk>