263a4449eb
-- APG (Automated Password Generator) is the tool set for random password generation. It features: a built-in ANSI X9.17 RNG (Random Number Generator)(CAST/SHA1), two methods for password generation: FIPS 181 and truly random, configurable lengths and numbers of passwords. Two components are supported, a network daemon (apgd) and a command line client (apg). The command line tool does not require the network daemon. WWW: http://www.adel.nursat.kz/apg/ MAINTAINER= Jose Nazario <jose@crimelabs.net> ok pvalchev@
28 lines
648 B
Makefile
28 lines
648 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/08/09 19:35:31 jsyn Exp $
|
|
|
|
COMMENT= "automated password generator"
|
|
|
|
DISTNAME= apg-1.2.13
|
|
CATEGORIES= security
|
|
NEED_VERSION= 1.432
|
|
|
|
HOMEPAGE= http://www.adel.nursat.kz/apg/
|
|
|
|
MAINTAINER= Jose Nazario <jose@crimelabs.net>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.adel.nursat.kz/apg/download/
|
|
|
|
MAKE_FLAGS= CC="${CC}"
|
|
FAKE_FLAGS= INSTALL_PREFIX=${WRKINST}${PREFIX}
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKDIST}/perl/apgcli.pl ${PREFIX}/bin/apgcli
|
|
@strip ${PREFIX}{/bin/apg,/sbin/apgd}
|
|
|
|
.include <bsd.port.mk>
|