dde87e2b40
This package was upgraded to enable building on DragonFly. It was using the -r gnu sed option which DragonFly doesn't support, but this was fixed for version 1.1.15 per pkg/47282. Additional changes include: Version 1.1.6 (r131) released 2 Apr 2013 - Detect errors when writing to the new users.txt file - Fix (harmless) bug where new users.txt file was not being closed - Add -Werror configure flag to fail on compiler warnings Version 1.1.5 (r124) released 29 Nov 2012 - Allow building on systems without strptime(3) (e.g., Windows) - Add support for Apache 2.4.x
38 lines
935 B
Makefile
38 lines
935 B
Makefile
# $NetBSD: Makefile,v 1.5 2013/04/17 13:36:19 marino Exp $
|
|
|
|
DISTNAME= mod_authn_otp-${DISTVERS}
|
|
PKGNAME= otptool-${DISTVERS}
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://mod-authn-otp.googlecode.com/files/
|
|
LICENSE= apache-2.0
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://mod-authn-otp.googlecode.com/
|
|
COMMENT= One-Time Password command line utility
|
|
|
|
PKG_APACHE_ACCEPTED= apache22
|
|
|
|
USE_LIBTOOL= yes
|
|
|
|
.include "../../mk/apache.mk"
|
|
|
|
DISTVERS= 1.1.6
|
|
|
|
SBINDIR= ${PREFIX}/sbin
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_FILES.paths= configure
|
|
SUBST_VARS.paths+= SBINDIR
|
|
SUBST_STAGE.paths= post-patch
|
|
|
|
GNU_CONFIGURE=yes
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/otptool ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/otptool.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../www/apache22/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|