pkgsrc/security/otpCalc/patches/patch-Makefile.in
ryoon 436df90a4f 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.
2013-06-09 08:52:27 +00:00

17 lines
655 B
Text

$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 ..; \