summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorryoon <ryoon>2013-06-09 08:52:27 +0000
committerryoon <ryoon>2013-06-09 08:52:27 +0000
commit8a33613d434e27756225fa9d2a9a35717228e14a (patch)
tree6e3b8013891e308250cf5c4ce24ab3fca21c39ca /security
parent6dd5bc19a764c455966f596aa49d7561c97d0a5c (diff)
downloadpkgsrc-8a33613d434e27756225fa9d2a9a35717228e14a.tar.gz
Update to 0.97
* Update HOMEPAGE and MASTER_SITES. * Convert custom do-install taget to patch to Makefile.in. Changelog: version 0.97 * Case insensitivity when responding to S/KEY challenges. RFC1760 does not mention case sensitivity, but I've received a report of a server implementation that is case sensitive. OTP behavior is unchanged.
Diffstat (limited to 'security')
-rw-r--r--security/otpCalc/Makefile14
-rw-r--r--security/otpCalc/distinfo9
-rw-r--r--security/otpCalc/patches/patch-Makefile.in17
3 files changed, 26 insertions, 14 deletions
diff --git a/security/otpCalc/Makefile b/security/otpCalc/Makefile
index 651fe5a5233..b6a5d49b585 100644
--- a/security/otpCalc/Makefile
+++ b/security/otpCalc/Makefile
@@ -1,24 +1,18 @@
-# $NetBSD: Makefile,v 1.4 2012/10/23 18:16:39 asau Exp $
+# $NetBSD: Makefile,v 1.5 2013/06/09 08:52:27 ryoon Exp $
#
-DISTNAME= otpCalc-0.96
-PKGREVISION= 5
+DISTNAME= otpCalc-0.97
CATEGORIES= x11 security
-MASTER_SITES= http://original.killa.net/infosec/otpCalc/
+MASTER_SITES= http://www.killa.net/infosec/otpCalc/
MAINTAINER= pkgsrc-users@NetBSD.org
-HOMEPAGE= http://original.killa.net/infosec/otpCalc/
+HOMEPAGE= http://www.killa.net/infosec/otpCalc/
COMMENT= OTP and S/Key calculator for X
GNU_CONFIGURE= YES
USE_TOOLS+= gmake
BUILD_TARGET= otpCalc otpCalc.1
-INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/otpCalc ${DESTDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/otpCalc.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.include "../../x11/gtk/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/security/otpCalc/distinfo b/security/otpCalc/distinfo
index 0c266615c3b..8af65962825 100644
--- a/security/otpCalc/distinfo
+++ b/security/otpCalc/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.2 2008/10/02 18:03:36 joerg Exp $
+$NetBSD: distinfo,v 1.3 2013/06/09 08:52:27 ryoon Exp $
-SHA1 (otpCalc-0.96.tar.gz) = c3a11060a2a84b95165f5d646c637ff032136d13
-RMD160 (otpCalc-0.96.tar.gz) = 901be227b5e9a31500d1b98dbf553bfe0805b210
-Size (otpCalc-0.96.tar.gz) = 123491 bytes
+SHA1 (otpCalc-0.97.tar.gz) = 0ca443baf05ed491e49419345ec815256a822b8c
+RMD160 (otpCalc-0.97.tar.gz) = 0b7908f90fede73e23f25cb0ebd0f9e87393a2a2
+Size (otpCalc-0.97.tar.gz) = 123704 bytes
+SHA1 (patch-Makefile.in) = 03454c602311f679f76769d4c31f54bc737dff76
SHA1 (patch-aa) = c986eb1d3a458d297522dde93a494d8a2123661e
diff --git a/security/otpCalc/patches/patch-Makefile.in b/security/otpCalc/patches/patch-Makefile.in
new file mode 100644
index 00000000000..4c651a104cc
--- /dev/null
+++ b/security/otpCalc/patches/patch-Makefile.in
@@ -0,0 +1,17 @@
+$NetBSD: patch-Makefile.in,v 1.1 2013/06/09 08:52:27 ryoon Exp $
+
+--- Makefile.in.orig 2004-11-24 06:44:12.000000000 +0000
++++ Makefile.in
+@@ -29,8 +29,10 @@ distclean: clean
+ rm -f Makefile config.h config.status config.cache config.log
+
+ install: otpCalc otpCalc.1
+- install -m 755 -o root -g root otpCalc $(bindir)/$(NAME)
+- install -m 644 -o root -g root otpCalc.1 $(mandir)/man1/$(NAME).1
++ ${BSD_INSTALL_PROGRAM_DIR} ${DESTDIR}$(bindir)
++ ${BSD_INSTALL_PROGRAM} otpCalc ${DESTDIR}$(bindir)/$(NAME)
++ ${BSD_INSTALL_MAN_DIR} ${DESTDIR}$(mandir)/man1
++ ${BSD_INSTALL_MAN} otpCalc.1 ${DESTDIR}$(mandir)/man1/$(NAME).1
+
+ dist: distclean
+ ( cd ..; \