Update of /cvsroot/pure-data/packages/darwin_app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7361/darwin_app
Modified Files: Makefile Log Message: cleaned things up to make operation clearer; darwin_app_doc_format was having trouble with too many open files, so switched to find with -exec
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/packages/darwin_app/Makefile,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** Makefile 1 Aug 2006 03:53:02 -0000 1.44 --- Makefile 2 Aug 2006 03:07:31 -0000 1.45 *************** *** 81,85 ****
extended_install: ! $(MAKE) -C $(packages_src) $(DEST_PATHS) install
#------------------------------------------------------------------------------# --- 81,85 ----
extended_install: ! $(MAKE) -C $(packages_src) $(DEST_PATHS) extended_install
#------------------------------------------------------------------------------# *************** *** 170,175 **** #------------------------------------------------------------------------------# darwin_app_core: darwin_app_wrapper ! cd $(packages_src) && \ ! $(MAKE) $(DEST_PATHS) PD_CONFIGURE_FLAGS=--enable-jack pd_install cd "$(PD_APP_CONTENTS)/Resources/Scripts" && \ ln -s ../bin/pd.tk AppMain.tcl --- 170,175 ---- #------------------------------------------------------------------------------# darwin_app_core: darwin_app_wrapper ! $(MAKE) -C $(packages_src) $(DEST_PATHS) PD_CONFIGURE_FLAGS=--enable-jack \ ! pd_install cd "$(PD_APP_CONTENTS)/Resources/Scripts" && \ ln -s ../bin/pd.tk AppMain.tcl *************** *** 194,203 **** # set the font to 10pt on all help patches # the BSD/Darwin version of sed must create a backup file when doing ! # in-place replacement, so delete the unneeded backup files darwin_app_doc_format: ! cd $(pddocdir) && \ ! sed -i.bak 's/^(#N canvas [0-9]* [0-9]* [0-9]* [0-9]*) 12/\1 10/' \ ! */*.pd */*/*.pd */*/*/*.pd ! find $(DESTDIR) -name '*.pd.bak' -delete
--- 194,202 ---- # set the font to 10pt on all help patches # the BSD/Darwin version of sed must create a backup file when doing ! # in-place replacement, so delete the unneeded backup files. darwin_app_doc_format: ! find $(pddocdir) -name '*.pd' -exec \ ! sed -i.b 's/^(#N canvas [0-9]* [0-9]* [0-9]* [0-9]*) 12/\1 10/' '{}' ; ! find $(DESTDIR) -name '*.pd.b' -delete
*************** *** 235,243 **** dmg: darwin_app_perms install -d "$(CWD)/$(DMG_NAME)" ! install -p -m0644 $(manualsdir)/Pd/Pd-LICENSE.txt \ ! $(manualsdir)/Pd/License.html \ ! $(manualsdir)/Pd/Welcome.html \ ! $(manualsdir)/Pd/ReadMe.html \ ! "$(CWD)/$(DMG_NAME)" cd $(BUILD_BASE) && mv $(PD_APP_NAME).app "$(CWD)/$(DMG_NAME)/" install -p -m0644 org.puredata.pd.plist "$(CWD)/$(DMG_NAME)" --- 234,238 ---- dmg: darwin_app_perms install -d "$(CWD)/$(DMG_NAME)" ! install -p -m0644 $(manualsdir)/Pd/ReadMe.html "$(CWD)/$(DMG_NAME)" cd $(BUILD_BASE) && mv $(PD_APP_NAME).app "$(CWD)/$(DMG_NAME)/" install -p -m0644 org.puredata.pd.plist "$(CWD)/$(DMG_NAME)"