diff options
author | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
commit | 87e1bea888d90a6044a18e46681bc456ea30305c (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /security/srp_client | |
parent | 0e3f31f90a7d6a3a3dc9c7045ed1c6c9c8dac0ac (diff) | |
download | pkgsrc-87e1bea888d90a6044a18e46681bc456ea30305c.tar.gz |
Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.
Fixes PR 35265, although I did not use the patch provided therein.
Diffstat (limited to 'security/srp_client')
-rw-r--r-- | security/srp_client/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/srp_client/Makefile b/security/srp_client/Makefile index ae6d0b73bac..56db67fc292 100644 --- a/security/srp_client/Makefile +++ b/security/srp_client/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2006/03/04 21:30:38 jlam Exp $ +# $NetBSD: Makefile,v 1.33 2007/01/07 09:14:10 rillig Exp $ DISTNAME= srp-1.4.4 PKGNAME= srp-client-1.4.4 @@ -33,7 +33,7 @@ SED_PATTERN+= -e "s,-ldes,-ldes -lroken -lcom_err -lcrypt," SED_PATTERN+= -e "s,-ldes,-ldes -lcom_err," .endif -INSTALLATION_DIRS= bin man/man1 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 post-patch: for FILE in ftp/ftp/Makefile.in ftp/ftpd/Makefile.in \ @@ -49,9 +49,9 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/telnet/telnet/telnet \ ${PREFIX}/bin/srptelnet ${INSTALL_DATA} ${WRKSRC}/telnet/telnet/telnet.1 \ - ${PREFIX}/man/man1/srptelnet.1 + ${PREFIX}/${PKGMANDIR}/man1/srptelnet.1 ${INSTALL_PROGRAM} ${WRKSRC}/ftp/ftp/ftp ${PREFIX}/bin/srpftp - ${INSTALL_DATA} ${WRKSRC}/ftp/ftp/ftp.M ${PREFIX}/man/man1/srpftp.1 + ${INSTALL_DATA} ${WRKSRC}/ftp/ftp/ftp.M ${PREFIX}/${PKGMANDIR}/man1/srpftp.1 .include "../../devel/gmp/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |