Revision: 9843
http://pure-data.svn.sourceforge.net/pure-data/?rev=9843&view=rev
Author: eighthave
Date: 2008-05-18 04:28:59 -0700 (Sun, 18 May 2008)
Log Message:
-----------
reorged readme and added bit about a place to install externals
Modified Paths:
--------------
branches/pd-extended/v0-40/packages/Makefile
Modified: branches/pd-extended/v0-40/packages/Makefile
===================================================================
--- branches/pd-extended/v0-40/packages/Makefile 2008-05-18 11:04:42 UTC (rev 9842)
+++ branches/pd-extended/v0-40/packages/Makefile 2008-05-18 11:28:59 UTC (rev 9843)
@@ -617,6 +617,46 @@
echo "<p>To make sure that all of the included libraries are loaded when Pd runs, " >> $(README_FILE)
echo "double-click <code>C:\Program Files\pd\pd-settings.reg</code> to import the settings to the registry. WARNING: this will overwrite any existing Pd preferences!</p>" >> $(README_FILE)
endif
+ echo "<h3>License</h3>" >> $(README_FILE)
+ echo "<p>" >> $(README_FILE)
+ echo 'This package is released under the <a href="http://www.gnu.org/copyleft/gpl.html" target="gpl">GNU GPL</a>. The Pd core and some other included code is originally available with a <a href="http://pure-data.cvs.sourceforge.net/pure-data/pd/LICENSE.txt">BSD license</a> from the Pd CVS on SourceForge.' >> $(README_FILE)
+ echo "</p>" >> $(README_FILE)
+ echo "<h3>Installing Externals, Objects, and Help files</h3>" >> $(README_FILE)
+ echo "<p>" >> $(README_FILE)
+ echo "If you would like to install other externals, objects, help files, etc. there are special folders that Pd-extended uses." >> $(README_FILE)
+ echo "<dl>" >> $(README_FILE)
+ echo "<dt>User-specific</dt>" >> $(README_FILE)
+ifeq ($(OS_NAME),darwin)
+ echo "<dd>~/Library/Pd</dd>" >> $(README_FILE)
+endif
+ifeq ($(OS_NAME),linux)
+ echo "<dd>~/pd/</dd>" >> $(README_FILE)
+endif
+ifeq ($(OS_NAME),windows)
+ echo "<dd>%UserProfile%\Application Data\Pd</dd>" >> $(README_FILE)
+endif
+ echo "<dt>Global</dt>" >> $(README_FILE)
+ifeq ($(OS_NAME),darwin)
+ echo "<dd>/Library/Pd</dd>" >> $(README_FILE)
+endif
+ifeq ($(OS_NAME),linux)
+ echo "<dd>/usr/share/pd</dd>" >> $(README_FILE)
+endif
+ifeq ($(OS_NAME),windows)
+ echo "<dd>%ProgramFiles%\Common Files\Pd</dd>" >> $(README_FILE)
+endif
+ echo "</dl>" >> $(README_FILE)
+ echo "</p>" >> $(README_FILE)
+ echo "<h3>Patented Algorithms</h3>" >> $(README_FILE)
+ echo "<p>" >> $(README_FILE)
+ echo "This package may contain software that is covered by patents in certain countries, like the U.S. and Germany. In order to use this software you must have the proper license. Below is a list of the known software packages that are covered by patents in some countries:" >> $(README_FILE)
+ echo "</p>" >> $(README_FILE)
+ echo "<ul>" >> $(README_FILE)
+ echo '<li><a href="http://en.wikipedia.org/wiki/MP3" target="license">MP3 aka MPEG-1 Part 3 Layer 3</a></li>' >> $(README_FILE)
+ echo '<li><a href="http://en.wikipedia.org/wiki/MPEG-2" target="license">MPEG-2</a></li>' >> $(README_FILE)
+ echo '<li><a href="http://en.wikipedia.org/wiki/MPEG-4#Licensing" target="license">MPEG-4</a></li>' >> $(README_FILE)
+ echo "</ul>" >> $(README_FILE)
+ echo '<p>Please consider trying to get rid of software patents in your country: <a href="http://www.nosoftwarepatents.com" target="nsp">http://www.nosoftwarepatents.com</a></p>' >> $(README_FILE)
echo "<h3>Pure Data CVS Developers</h3>" >> $(README_FILE)
# this may seem whack, but it generates the list of developers from the SourceForge site:
curl 'http://sourceforge.net/project/memberlist.php?group_id=55736' | grep -A2 -e '<td>' | sed 's|\(href="\)|target="w" \1http://sourceforge.net|' >> $(README_FILE)
@@ -624,10 +664,6 @@
echo "<p>" >> $(README_FILE)
echo "Many others not listed have contributed their time and effort, this is just a list of the current developers in the SourceForge project. But really, every Pd user is a developer and is encouraged to contribute to the CVS repository." >> $(README_FILE)
echo "</p>" >> $(README_FILE)
- echo "<h3>License</h3>" >> $(README_FILE)
- echo "<p>" >> $(README_FILE)
- echo 'This package is released under the <a href="http://www.gnu.org/copyleft/gpl.html" target="gpl">GNU GPL</a>. The Pd core and some other included code is originally available with a <a href="http://pure-data.cvs.sourceforge.net/pure-data/pd/LICENSE.txt">BSD license</a> from the Pd CVS on SourceForge.' >> $(README_FILE)
- echo "</p>" >> $(README_FILE)
echo "<h3>Included Versions</h3>" >> $(README_FILE)
echo "<p>These externals are all included from the Pd CVS repository:</p>" >> $(README_FILE)
echo "<ul>" >> $(README_FILE)
@@ -649,16 +685,6 @@
echo "<li>unauthorized: `date +20%y.%m.%d`" >> $(README_FILE)
echo "<li>zexy: $(ZEXY_VERSION)" >> $(README_FILE)
echo "</ul>" >> $(README_FILE)
- echo "<h3>Patented Algorithms</h3>" >> $(README_FILE)
- echo "<p>" >> $(README_FILE)
- echo "This package may contain software that is covered by patents in certain countries, like the U.S. and Germany. In order to use this software you must have the proper license. Below is a list of the known software packages that are covered by patents in some countries:" >> $(README_FILE)
- echo "</p>" >> $(README_FILE)
- echo "<ul>" >> $(README_FILE)
- echo '<li><a href="http://en.wikipedia.org/wiki/MP3" target="license">MP3 aka MPEG-1 Part 3 Layer 3</a></li>' >> $(README_FILE)
- echo '<li><a href="http://en.wikipedia.org/wiki/MPEG-2" target="license">MPEG-2</a></li>' >> $(README_FILE)
- echo '<li><a href="http://en.wikipedia.org/wiki/MPEG-4#Licensing" target="license">MPEG-4</a></li>' >> $(README_FILE)
- echo "</ul>" >> $(README_FILE)
- echo '<p>Please consider trying to get rid of software patents in your country: <a href="http://www.nosoftwarepatents.com" target="nsp">http://www.nosoftwarepatents.com</a></p>' >> $(README_FILE)
echo "(this package was built on `date`) <BR>" >> $(README_FILE)
echo "</body></html>" >> $(README_FILE)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 9841
http://pure-data.svn.sourceforge.net/pure-data/?rev=9841&view=rev
Author: eighthave
Date: 2008-05-18 03:23:00 -0700 (Sun, 18 May 2008)
Log Message:
-----------
copied .DS_Store to set background image from 0.39.3 pd-extended release branch and it seems to work fine
Modified Paths:
--------------
branches/pd-extended/v0-40/packages/darwin_app/DS_Store
Modified: branches/pd-extended/v0-40/packages/darwin_app/DS_Store
===================================================================
--- branches/pd-extended/v0-40/packages/darwin_app/DS_Store 2008-05-18 10:04:16 UTC (rev 9840)
+++ branches/pd-extended/v0-40/packages/darwin_app/DS_Store 2008-05-18 10:23:00 UTC (rev 9841)
@@ -1,6 +1,7 @@
-Bud1
-obClrB\xDEn @\x80 @\x80 @\x80 @
-.BKGDblobClrB\xDEn߁\xECxδ.ICVObool.fwi0blob|E:/icnv.fwswlong.fwvhshor\xBE.icgoblob.icvoblobicv4\x80nonebotm.icvtshor.infoblob(\xC1Tz\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFFP\xB1\xD0.pictblob\xE6\xE6
-Pd-background\xC1EH+background.png\xC1\xFF\xFF\xFF\xFF
-.imagefolder\xC1G\x85\xC1DL)Pd-background:.imagefolder:background.pngbackground.png
-Pd-background/.imagefolder/background.png/Volumes/Pd-backgroundnnMacOS X\xBA\x8E\x9DH+K\x83Pd-background.dmg\xA8\xA6\xFB\xC1Bdevrddsk\xFF\xFF\xFF\xFF Desktop\xBA\x8E\xE3\\xC1G\x82K\x830\xC0/\xCD,MacOS X:Users:hans:Desktop:Pd-background.dmg$Pd-background.dmgMacOS X$Users/hans/Desktop/Pd-background.dmg/\xFF\xFF\xFF\xFForg.puredata.pd.plistIlocblobd&\xFF\xFF\xFF\xFF\xFF\xFFPd-0.39.2-extended-test5.appIlocblob\xF4[\xFF\xFF\xFF\xFF\xFF\xFFReadMe.htmlIlocblobt&\xFF\xFF\xFF\xFF\xFF\xFF @EDSDB `\x80 @\x80 @\x80 @
\ No newline at end of file
+Bud1obPctB @\x80 @\x80 @\x80 (a).BKGDblobPctBf.ICVObool.fwi0blob\xAFM\xEAicnv.fwswlong.fwvhshoro.icgoblob.icvoblobicv4dnonebotm.icvtshor.infoblob(\xC1Tz\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFFP\xB1\xD0.pictblobPd-extended\xC2y\xE6:H+background.png\xC2y\xE5\xE4\xFF\xFF\xFF\xFF
+.background\xC2y\xCA\xC2y\xC9\xC4&Pd-extended:.background:background.pngbackground.pngPd-extended/.background/background.png/Volumes/Pd-extended\x98\x98MB HD\xC1\xFD\xC7\xF2H+
+\x8D build.dmg
+<(\xC2y\xE69devrddsk\xFF\xFF\xFF\xFF tf2\xC1\xFD\xB9\xE2\xC2y\xCA
+\x8D\x8E\x8E\x99\x95)\xC4i\xD9CMB HD:Users:stfi:Projects:Pd:pd-extended:dmg-dressing:tf2:build.dmg build.dmgMB HD=Users/stfi/Projects/Pd/pd-extended/dmg-dressing/tf2/build.dmg/\xFF\xFF\xFF\xFFApplicationsIlocblobI|\xFF\xFF\xFF\xFF\xFF\xFFApplicationsinfoblob0\xC2wZ\xA2\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFFPd-extended.appIlocblobY{\xFF\xFF\xFF\xFF\xFF\xFFReadMe.htmlIlocblobZ
+\xFF\xFF\xFF\xFF\xFF\xFFReadMe.htmlinfoblob0\xC2wI\xAD\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFFEDSDB `\x80 @\x80 @\x80 (a)eadMe.htmlIlocblobZ
+\xFF\xFF\xFF\xFF\xFF\xFFReadMe.htmlinfoblob0\xC2wI\xAD\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 9840
http://pure-data.svn.sourceforge.net/pure-data/?rev=9840&view=rev
Author: eighthave
Date: 2008-05-18 03:04:16 -0700 (Sun, 18 May 2008)
Log Message:
-----------
make ReadMe use the correct .app name
Modified Paths:
--------------
branches/pd-extended/v0-40/packages/Makefile
Modified: branches/pd-extended/v0-40/packages/Makefile
===================================================================
--- branches/pd-extended/v0-40/packages/Makefile 2008-05-18 09:59:44 UTC (rev 9839)
+++ branches/pd-extended/v0-40/packages/Makefile 2008-05-18 10:04:16 UTC (rev 9840)
@@ -609,7 +609,7 @@
echo "<p></p>" >> $(README_FILE)
endif
ifeq ($(OS_NAME),darwin)
- echo "<p>To install Pd, drag the $(PACKAGE_NAME).app into your <b>/Applications</b> folder or to the shortcut in the disk image. (<i>You might need to put the old one in the trash before copying this one to <b>/Applications</b></i>)</p>" >> $(README_FILE)
+ echo "<p>To install Pd, drag the $(PD_APP_NAME).app into your <b>/Applications</b> folder or to the shortcut in the disk image. (<i>You might need to put the old one in the trash before copying this one to <b>/Applications</b></i>)</p>" >> $(README_FILE)
echo "<p>By default, most of the included libraries are loaded at startup. To change this, set your own preferences in the <b>Startup...</b> Preferences pane usings the <b>Save all settings</b> button. If you want to start with a blank set of preferences, run this command in the Terminal.app: </p><p><code>touch ~/Library/Preferences/org.puredata.pd.plist</code> (<code>~</code> <i>means your home folder</i>)</p><p>The Preferences panels in Pd are currently buggy, so you might have better luck with the Apple utility, Property List Editor, which is freely available as part of XCode or the Server Tools.</p>" >> $(README_FILE)
endif
ifeq ($(OS_NAME),windows)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.