Makefile 538 B

123456789101112131415161718192021222324252627282930
  1. # $OpenBSD: Makefile,v 1.17 2017/04/10 11:46:33 sthen Exp $
  2. COMMENT= program that manages encrypted password databases
  3. DISTNAME= pwsafe-0.2.0
  4. REVISION= 4
  5. CATEGORIES= security
  6. HOMEPAGE= http://nsd.dyndns.org/pwsafe/
  7. # GPLv2+
  8. PERMIT_PACKAGE_CDROM= Yes
  9. WANTLIB= m ncurses crypto c ${LIBCXX} readline curses
  10. MASTER_SITES= ${HOMEPAGE}releases/
  11. CONFIGURE_STYLE= gnu
  12. USE_GMAKE= Yes
  13. FLAVORS= no_x11
  14. FLAVOR?=
  15. .if ${FLAVOR:Mno_x11}
  16. CONFIGURE_ARGS+= --without-x
  17. .else
  18. WANTLIB+= Xmu X11 SM ICE
  19. .endif
  20. .include <bsd.port.mk>