Update of /cvsroot/pure-data/packages
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17565
Modified Files:
TODO
Log Message:
got and RC7 build, everything seems OK, but launching .htm files from the help browser doesn't work. arg. Documented the basic process of making the installer on the website
Index: TODO
===================================================================
RCS file: /cvsroot/pure-data/packages/TODO,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -…
[View More]r1.14 -r1.15
*** TODO 28 Dec 2005 18:46:08 -0000 1.14
--- TODO 17 Jan 2006 06:32:51 -0000 1.15
***************
*** 1,11 ****
- - make pd-settings.reg and org.puredata.pd.plist have the same libs and same order
-
- fix patch failures in patch_pd
- - make sure PDP is being added
-
- - add pan library
-
- allow DESTDIR to be a relative path
--- 1,5 ----
***************
*** 28,35 ****
everything compile for that CPU.
- - add GRIPD for Anders
-
- - mDNS objects!
-
- make standard targets: distclean (*~, etc.), uninstall instead of install_clean
--- 22,25 ----
[View Less]
Update of /cvsroot/pure-data/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8389
Added Files:
generate-pd-settings-files.sh
Log Message:
I wrote script to automatically generate pd-settings files for Windows and Mac OS X. Currently it just generates a list of libs to load, but it could easily be extended to do more.
Also, it needs the GNU/Linux settings, but I didn't add it yet because I don't know the format offhand. Also, it would be quite easy to add.
--- NEW FILE: …
[View More]generate-pd-settings-files.sh ---
#!/bin/sh
LIBS="Gem cyclone zexy cxc ext13 iemabs iemmatrix markex maxlib memento mjlib motex oscx pddp pdogg pdp pidip pixeltango pmpd rradical sigpack smlib toxy unauthorized vbap xsample"
ROOT_DIR=~/cvs/pure-data/packages
GNULINUX_FILE=${ROOT_DIR}/linux_make/pdsettings
MACOSX_FILE=${ROOT_DIR}/darwin_app/org.puredata.pd.plist
WINDOWS_FILE=${ROOT_DIR}/win32_inno/pd-settings.reg
MACOSX_HEADER='<?xml version="1.0" encoding="UTF-8"?>\n<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">\n<plist version="1.0">\n<dict>'
MACOSX_FOOTER='</dict>\n
</plist>\n'
WINDOWS_HEADER='Windows Registry Editor Version 5.00\n\n[HKEY_LOCAL_MACHINE\SOFTWARE\Pd]'
#echo -e $GNULINUX_HEADER > $GNULINUX_FILE
echo -e $MACOSX_HEADER > $MACOSX_FILE
echo -e $WINDOWS_HEADER > $WINDOWS_FILE
function print_macosx ()
{
echo -e "\t<key>loadlib$1</key>" >> $MACOSX_FILE
echo -e "\t<string>$2</string>" >> $MACOSX_FILE
}
function print_windows ()
{
echo "\"loadlib$1\"=\"$2\"" >> $WINDOWS_FILE
}
i=1
for lib in $LIBS; do
echo -n "$lib "
print_macosx $i $lib
print_windows $i $lib
((++i))
done
echo " "
echo -e $MACOSX_FOOTER >> $MACOSX_FILE
[View Less]