diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
commit | 2829e658f2ba62cb77f3f151f468ec8de1549bd5 (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /editors/manedit | |
parent | 5997a7db2d5af7de47f411825619ffc3689f1ce2 (diff) | |
download | pkgsrc-2829e658f2ba62cb77f3f151f468ec8de1549bd5.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 'editors/manedit')
-rw-r--r-- | editors/manedit/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editors/manedit/Makefile b/editors/manedit/Makefile index 35ff75c9ce4..ee10a89a6ab 100644 --- a/editors/manedit/Makefile +++ b/editors/manedit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2006/09/09 02:41:58 obache Exp $ +# $NetBSD: Makefile,v 1.27 2007/01/07 09:13:52 rillig Exp $ # DISTNAME= manedit-0.5.6 @@ -20,7 +20,7 @@ MAKE_ENV+= CPP=${CXX:Q} # The FreeBSD makefile may be used as "generic UNIX". MAKE_FILE= Makefile.FreeBSD -INSTALLATION_DIRS= bin man/man1 man/man7 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man7 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/manedit ${PREFIX}/bin @@ -29,11 +29,11 @@ do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/manedit \ ${PREFIX}/share/manedit/templates \ ${PREFIX}/share/manedit/icons - ${INSTALL_MAN} ${WRKSRC}/manedit.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/manedit.1 ${PREFIX}/${PKGMANDIR}/man1 ${INSTALL_MAN} ${WRKSRC}/help/manpage_writing_procedures \ - ${PREFIX}/man/man7/manpage_writing_procedures.7 + ${PREFIX}/${PKGMANDIR}/man7/manpage_writing_procedures.7 ${INSTALL_MAN} ${WRKSRC}/help/manpage_xml_referance \ - ${PREFIX}/man/man7/manpage_xml_reference.7 + ${PREFIX}/${PKGMANDIR}/man7/manpage_xml_reference.7 cd ${WRKSRC}/templates && ${INSTALL_DATA} api.mpt config.mpt \ intro.mpt program.mpt ${PREFIX}/share/manedit/templates cd ${WRKSRC} && ${INSTALL_DATA} manedit.xpm \ |