Ticket #12151: macports-mandir.patch

File macports-mandir.patch, 2.9 KB (added by afb@…, 17 years ago)

macports-mandir.patch

  • base/Mk/macports.autoconf.mk.in

     
    5353libdir                  = @libdir@
    5454localstatedir           = @localstatedir@
    5555infodir                 = @infodir@
     56mandir                  = @mandir@
    5657
    5758mpconfigdir             = @MPCONFIGDIR@
    5859portsdir                = @PORTSDIR@
  • base/src/port/Makefile

     
    3131distclean: clean
    3232
    3333install: mkdirs
    34         $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 port.1 ${INSTALLDIR}/share/man/man1
     34        $(INSTALL) -d -o ${DSTUSR} -g ${DSTGRP} -m ${DSTMODE} ${DESTDIR}${mandir}/man1
     35        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 port.1 ${DESTDIR}${mandir}/man1
    3536        $(INSTALL) -d -o ${DSTUSR} -g ${DSTGRP} -m ${DSTMODE} ${INSTALLDIR}/bin
    3637        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 555 port portindex portmirror ${INSTALLDIR}/bin/
    3738        cd ${INSTALLDIR}/bin && $(LN_S) -f port portf
  • base/doc/Makefile

     
    2525                rm -f "${INSTALLDIR}/man"; \
    2626        fi
    2727
    28         if test ! -e "${INSTALLDIR}/man" ; then \
     28        if test ! -e "${INSTALLDIR}/man" -a "${mandir}" = "${prefix}/share/man"; then \
    2929                $(LN_S) share/man ${INSTALLDIR}/man; \
    3030        fi
    3131
     32        $(INSTALL) -d -o ${DSTUSR} -g ${DSTGRP} -m ${DSTMODE} ${DESTDIR}${mandir}/man5
     33        $(INSTALL) -d -o ${DSTUSR} -g ${DSTGRP} -m ${DSTMODE} ${DESTDIR}${mandir}/man7
     34
    3235        if test ! -e ${DESTDIR}${mpconfigdir}/macports.conf ; then \
    3336                set -x; \
    3437                $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 644 macports.conf ${DESTDIR}${mpconfigdir}; \
     
    4649        $(INSTALL) -d -o ${DSTUSR} -g ${DSTGRP} -m ${DSTMODE} ${INSTALLDIR}/share/macports/resources/port1.0/install
    4750        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 644 prefix.mtree ${INSTALLDIR}/share/macports/resources/port1.0/install/
    4851        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 644 macosx.mtree ${INSTALLDIR}/share/macports/resources/port1.0/install/
    49         $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 macports.conf.5 ${INSTALLDIR}/share/man/man5
    50         $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 portfile.7 ${INSTALLDIR}/share/man/man7
    51         $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 portstyle.7 ${INSTALLDIR}/share/man/man7
    52         $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 porthier.7 ${INSTALLDIR}/share/man/man7
    53         $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 portgroup.7 ${INSTALLDIR}/share/man/man7
     52        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 macports.conf.5 ${DESTDIR}${mandir}/man5
     53        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 portfile.7 ${DESTDIR}${mandir}/man7
     54        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 portstyle.7 ${DESTDIR}${mandir}/man7
     55        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 porthier.7 ${DESTDIR}${mandir}/man7
     56        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 444 portgroup.7 ${DESTDIR}${mandir}/man7