diff options
author | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-01-07 09:13:46 +0000 |
commit | 4a34beb7de5a2bf4388d326eab99406995431246 (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /security/pgp2 | |
parent | 5a39e816b9369cc7a92ab60b196b6306904c19eb (diff) | |
download | pkgsrc-4a34beb7de5a2bf4388d326eab99406995431246.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/pgp2')
-rw-r--r-- | security/pgp2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/pgp2/Makefile b/security/pgp2/Makefile index ae7eac3a5fb..d0f72446a14 100644 --- a/security/pgp2/Makefile +++ b/security/pgp2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2006/10/04 21:58:14 wiz Exp $ +# $NetBSD: Makefile,v 1.50 2007/01/07 09:14:10 rillig Exp $ DISTNAME= pgp263is PKGREVISION= 1 @@ -42,7 +42,7 @@ CFLAGS+= -DHIGHFIRST BUILD_DEFS+= ASMFLAG -INSTALLATION_DIRS= bin man/man1 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 post-extract: cd ${WRKDIR} && ${TAR} xf pgp263ii.tar && ${RM} -f pgp263ii.tar @@ -55,7 +55,7 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pgp ${PREFIX}/bin - ${INSTALL_DATA} ${WRKDIR}/doc/pgp.1 ${PREFIX}/man/man1 + ${INSTALL_DATA} ${WRKDIR}/doc/pgp.1 ${PREFIX}/${PKGMANDIR}/man1 ${INSTALL_DATA_DIR} ${PGPLIB} cd ${WRKDIR}/doc && ${INSTALL_DATA} pgpdoc1.txt pgpdoc2.txt ${PGPLIB} cd ${WRKDIR} && \ |