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