New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 79241


Ignore:
Timestamp:
06/06/11 05:09:53 (4 years ago)
Author:
jmr@…
Message:

separate dirs used only by base into another mtree file, so ports that install files there will trigger the warning

Location:
trunk/base
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/base/configure

    r79025 r79241  
    96289628 
    96299629# Output 
    9630 ac_config_files="$ac_config_files Doxyfile Makefile Mk/macports.autoconf.mk doc/prefix.mtree doc/macosx.mtree doc/macports.conf doc/pubkeys.conf portmgr/freebsd/Makefile src/Makefile src/macports1.0/macports_autoconf.tcl src/port1.0/port_autoconf.tcl src/registry2.0/registry_autoconf.tcl src/programs/Makefile src/macports1.0/macports_fastload.tcl setupenv.bash" 
     9630ac_config_files="$ac_config_files Doxyfile Makefile Mk/macports.autoconf.mk doc/base.mtree doc/prefix.mtree doc/macosx.mtree doc/macports.conf doc/pubkeys.conf portmgr/freebsd/Makefile src/Makefile src/macports1.0/macports_autoconf.tcl src/port1.0/port_autoconf.tcl src/registry2.0/registry_autoconf.tcl src/programs/Makefile src/macports1.0/macports_fastload.tcl setupenv.bash" 
    96319631 
    96329632 
     
    1034110341    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 
    1034210342    "Mk/macports.autoconf.mk") CONFIG_FILES="$CONFIG_FILES Mk/macports.autoconf.mk" ;; 
     10343    "doc/base.mtree") CONFIG_FILES="$CONFIG_FILES doc/base.mtree" ;; 
    1034310344    "doc/prefix.mtree") CONFIG_FILES="$CONFIG_FILES doc/prefix.mtree" ;; 
    1034410345    "doc/macosx.mtree") CONFIG_FILES="$CONFIG_FILES doc/macosx.mtree" ;; 
  • trunk/base/configure.ac

    r79025 r79241  
    348348        Makefile 
    349349        Mk/macports.autoconf.mk 
     350        doc/base.mtree 
    350351        doc/prefix.mtree 
    351352        doc/macosx.mtree 
  • trunk/base/doc/Makefile

    r71035 r79241  
    1818 
    1919distclean: clean 
    20         rm -f macports.conf macosx.mtree prefix.mtree pubkeys.conf 
     20        rm -f macports.conf base.mtree macosx.mtree prefix.mtree pubkeys.conf 
    2121 
    2222%.1.gz: %.1 
     
    3333        $(INSTALL) -d -o ${DSTUSR} -g ${DSTGRP} -m ${DSTMODE} ${DESTDIR}${mpconfigdir} 
    3434 
    35         <prefix.mtree $(MTREE) -U -e -p ${INSTALLDIR} > /dev/null 
     35        < prefix.mtree $(MTREE) -U -e -p ${INSTALLDIR} > /dev/null 
     36        < base.mtree $(MTREE) -U -e -p ${INSTALLDIR} > /dev/null 
    3637        if test -L "${INSTALLDIR}/man" ; then \ 
    3738                rm -f "${INSTALLDIR}/man"; \ 
     
    5657 
    5758        $(INSTALL) -d -o ${DSTUSR} -g ${DSTGRP} -m ${DSTMODE} ${INSTALLDIR}/share/macports/install 
     59        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 644 base.mtree ${INSTALLDIR}/share/macports/install/ 
    5860        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 644 prefix.mtree ${INSTALLDIR}/share/macports/install/ 
    5961        $(INSTALL) -o ${DSTUSR} -g ${DSTGRP} -m 644 macosx.mtree ${INSTALLDIR}/share/macports/install/ 
  • trunk/base/doc/prefix.mtree.in

    r66775 r79241  
    241241    .. 
    242242    var 
    243         macports 
    244             build 
    245             .. 
    246             distfiles 
    247             .. 
    248             logs 
    249             .. 
    250             packages 
    251             .. 
    252             receipts 
    253             .. 
    254             registry 
    255             .. 
    256         .. 
    257243    .. 
    258244    www 
  • trunk/base/src/port/Makefile

    r71035 r79241  
    2323 
    2424mkdirs: 
    25         <../../doc/prefix.mtree $(MTREE) -U -d -e -p ${INSTALLDIR} > /dev/null 
     25        < ../../doc/prefix.mtree $(MTREE) -U -d -e -p ${INSTALLDIR} > /dev/null 
     26        < ../../doc/base.mtree $(MTREE) -U -d -e -p ${INSTALLDIR} > /dev/null 
    2627 
    2728clean: 
Note: See TracChangeset for help on using the changeset viewer.