Update of /cvsroot/pure-data/packages/darwin_app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27738
Modified Files: Makefile Log Message: made the Pd-0.38-2hcs0 release based on the Pd.app from Ben Bogard/PixelTANGO
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/packages/darwin_app/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 19 Apr 2005 05:04:56 -0000 1.7 --- Makefile 20 Apr 2005 23:23:31 -0000 1.8 *************** *** 31,35 ****
# release version for this distro ! PACKAGE_VERSION = beta4 PACKAGE_NAME = pd-$(PD_VERSION)-$(PACKAGE_VERSION) DMG_NAME = $(PACKAGE_NAME) --- 31,35 ----
# release version for this distro ! PACKAGE_VERSION = hcs0 PACKAGE_NAME = pd-$(PD_VERSION)-$(PACKAGE_VERSION) DMG_NAME = $(PACKAGE_NAME) *************** *** 77,80 **** --- 77,83 ---- darwin_app_docs darwin_app_externals darwin_app_abstractions
+ # this target is for when you already have a pre-built Pd.app and you + # just want to fill it with goodies from CVS. To do so, place your + # Pd.app in installroot/Applications/Pd.app darwin_prebuilt_app: darwin_app_externals darwin_app_docs \ darwin_app_abstractions darwin_app_doc_format *************** *** 97,101 **** echo "</head>" >> $(README_FILE) echo "<body>" >> $(README_FILE) ! echo "<h2><IMG SRC="pd-16.png"> Pure Data $(PD_VERSION)-$(PACKAGE_VERSION)</h2>" >> $(README_FILE) echo "<p>Pd is a free real-time computer music software package resembling Max. It provides a patchable environment for audio analysis, synthesis, and processing, with a rich set of multimedia capabilities. You can get Pd for Linux, Windows, MacOS X, BSD, or IRIX.</p>" >> $(README_FILE) echo "<p>For more information, go to: http://www.puredata.org</p>" >> $(README_FILE) --- 100,104 ---- echo "</head>" >> $(README_FILE) echo "<body>" >> $(README_FILE) ! echo "<h2>Pure Data $(PD_VERSION)-$(PACKAGE_VERSION)</h2>" >> $(README_FILE) echo "<p>Pd is a free real-time computer music software package resembling Max. It provides a patchable environment for audio analysis, synthesis, and processing, with a rich set of multimedia capabilities. You can get Pd for Linux, Windows, MacOS X, BSD, or IRIX.</p>" >> $(README_FILE) echo "<p>For more information, go to: http://www.puredata.org</p>" >> $(README_FILE) *************** *** 197,212 **** -rm -Rf `find $(PD_FILE_ROOT) -name CVS` # set the font to 10pt on all help patches - cd $(HELP_DIR) && \ - sed -i.bak 's/^(#N canvas [0-9]* [0-9]* [0-9]* [0-9]*) 12/\1 10/' */*.pd # the BSD/Darwin version of sed must create a backup file when doing # in-place replacement, so delete the unneeded backup files ! -rm */*.pd.bak # run script to move help-*.pd files to *-help.pd according to the standard ! ../../scripts/convert-help-to-standard.sh
darwin_app_docs: #---------------------------------------------------------------------------- ! # DOC install -d $(HELP_DIR)/5.reference install -d $(HELP_DIR)/7.stuff cp -Rp ../../doc/tutorials $(HELP_DIR) --- 200,219 ---- -rm -Rf `find $(PD_FILE_ROOT) -name CVS` # 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 ! cd $(HELP_DIR) && \ ! sed -i.bak 's/^(#N canvas [0-9]* [0-9]* [0-9]* [0-9]*) 12/\1 10/' */*.pd && \ ! rm -f */*.pd.bak # run script to move help-*.pd files to *-help.pd according to the standard ! cd $(HELP_DIR) && ../../../../../../../../scripts/convert-help-to-standard.sh
darwin_app_docs: #---------------------------------------------------------------------------- ! # externals help patches install -d $(HELP_DIR)/5.reference + cd ../../externals/build/doc && make + cp -Rp ../../externals/build/doc/* $(HELP_DIR)/5.reference + #---------------------------------------------------------------------------- + # DOC install -d $(HELP_DIR)/7.stuff cp -Rp ../../doc/tutorials $(HELP_DIR) *************** *** 383,387 **** cd ../../externals/unauthorized && make install -p -m0444 ../../externals/unauthorized/*/*.pd_darwin $(EXTERNALS_DIR) ! install -p -m0444 ../../externals/unauthorized/*/*.pd $(HELP_DIR)/5.reference install -p -m0444 ../../externals/unauthorized/*/*.txt $(HELP_DIR)/5.reference install -p -m0444 ../../externals/unauthorized/*/*.pls $(HELP_DIR)/5.reference --- 390,394 ---- cd ../../externals/unauthorized && make install -p -m0444 ../../externals/unauthorized/*/*.pd_darwin $(EXTERNALS_DIR) ! install -p -m0644 ../../externals/unauthorized/*/*.pd $(HELP_DIR)/5.reference install -p -m0444 ../../externals/unauthorized/*/*.txt $(HELP_DIR)/5.reference install -p -m0444 ../../externals/unauthorized/*/*.pls $(HELP_DIR)/5.reference *************** *** 397,403 **** grep -v '-help.pd' | sed 's/([&<>|~])/\\1/g') \ $(EXTERNALS_DIR) - install -p -m0444 ../../externals/zexy/zexy.pd $(HELP_DIR)/5.reference - install -d $(HELP_DIR)/help-zexy - install -p -m0444 ../../externals/zexy/examples/*.* $(HELP_DIR)/help-zexy install -p -m0444 ../../externals/zexy/abs/*-help.pd $(HELP_DIR)/5.reference
--- 404,407 ---- *************** *** 481,487 **** cd $(DESTDIR)/Applications && mv $(PD_APP_NAME).app "../../$(DMG_NAME)" install -p -m0444 ../../pd/LICENSE.txt "$(DMG_NAME)/PD LICENSE.txt" ! install -p -m0444 pd-16.png $(LICENSE_FILE) $(README_FILE) \ ! $(WELCOME_FILE) $(LICENSE_FILE) \ ! "$(DMG_NAME)" /bin/sh mkdmg "$(DMG_NAME)"
--- 485,490 ---- cd $(DESTDIR)/Applications && mv $(PD_APP_NAME).app "../../$(DMG_NAME)" install -p -m0444 ../../pd/LICENSE.txt "$(DMG_NAME)/PD LICENSE.txt" ! install -p -m0444 $(LICENSE_FILE) $(README_FILE) \ ! $(WELCOME_FILE) $(LICENSE_FILE) "$(DMG_NAME)" /bin/sh mkdmg "$(DMG_NAME)"