I've now got BottomFeeder into a state where you can do a simple build using VW 7.5. Here's the build script I'm using for my development image - the only change necessary will be in the name you use to access the public story repository - I've saved mine under the name "cincomsmalltalk". Anyway, here's the script. Use it with this command line:
visual visual.im -filein build-bf-dev.st
| profile |
#(
'$(VISUALWORKS)\database\oraclethapiexdi.pcl'
'$(VISUALWORKS)\contributed\PostgreSQL\StoreForPostgreSQL.pcl'
'$(VISUALWORKS)\store\StoreForOracle.pcl'
'$(VISUALWORKS)\parcels\RBSUnitExtensions.pcl'
'$(VISUALWORKS)\net\NetClients.pcl'
'$(VISUALWORKS)\contributed\Heeg\GHSpeedUpXMLParser.pcl'
'$(VISUALWORKS)\parcels\Model-Observables.pcl'
'$(VISUALWORKS)\parcels\CE.pcl'
'$(VISUALWORKS)\preview\Unicode\AllEncodings.pcl'
'$(VISUALWORKS)\preview\Unicode\UnicodeCharacterInput.pcl'
'$(VISUALWORKS)\dllcc\DLLCC.pcl'
'$(VISUALWORKS)\parcels\XSL.pcl'
'$(VISUALWORKS)\parcels\UIPainter.pcl'
'$(VISUALWORKS)\opentalk\Opentalk-STST.pcl'
'$(VISUALWORKS)\webservices\UDDIInquire.pcl'
'$(VISUALWORKS)\image\rss\WindowsGoodies.pcl'
'$(VISUALWORKS)\parcels\MacExtra.pcl'
'$(VISUALWORKS)\packaging\RuntimePackager.pcl'
'$(VISUALWORKS)\image\rss\ImageConfig.pcl'
'$(VISUALWORKS)\contributed\VRGoodies\VRFileReading.pcl'
'$(VISUALWORKS)\contributed\CraftedMemoryPolicy\CraftedMemoryPolicy.pcl'
'$(VISUALWORKS)\waveserver\Wave-Server-Base.pcl'
'$(VISUALWORKS)\waveserver\Wave-Server.pcl'
) do: [:each |
Parcel loadParcelFrom: each].
"set space sizes to a bigger client state"
ObjectMemory sizesAtStartup: #(5.0 5.0 10.0 5.0 2.0 10.0 3.0).
"read in VW Settings - the next two sections assume that you have
saved your settings for Store, and that you have a connection
named cincomsmalltalk"
Store.RepositoryManager importRepositoriesFromXmlOn: 'repositories.xml' asFilename readStream.
"load from Store - connect to public store first"
profile := Store.RepositoryManager repositories
detect: [:each | 'cincomsmalltalk' = each name]
ifNone: [nil].
profile ifNil: [^self].
Store.DbRegistry connectTo: profile.
"now load from store"
(Store.Package newestVersionWithName: 'TransparentWindows') loadSrc.
(Store.Bundle newestVersionWithName: 'SpellChecker') loadSrc.
(Store.Package newestVersionWithName: 'WinGDIPlusInterface') loadSrc.
(Store.Bundle newestVersionWithName: 'EpiWin32Folder') loadSrc.
(Store.Package newestVersionWithName: 'GIFSupport') loadSrc.
(Store.Package newestVersionWithName: 'Weaklings') loadSrc.
(Store.Package newestVersionWithName: 'Emote-Support') loadSrc.
(Store.Package newestVersionWithName: 'ExtraEmphases') loadSrc.
(Store.Package newestVersionWithName: 'ExtraActivity') loadSrc.
(Store.Package newestVersionWithName: 'VRCommonDialogs') loadSrc.
(Store.Package newestVersionWithName: 'XmlRpcClient') loadSrc.
(Store.Package newestVersionWithName: 'SubForkPreload') loadSrc.
(Store.Package newestVersionWithName: 'SubFork') loadSrc.
(Store.Package newestVersionWithName: 'Http-Overrides') loadSrc.
(Store.Package newestVersionWithName: 'NetResources') loadSrc.
(Store.Package newestVersionWithName: 'NetResourcesHTTP') loadSrc.
(Store.Package newestVersionWithName: 'NetResourcesHTML') loadSrc.
(Store.Package newestVersionWithName: 'LibTidy') loadSrc.
(Store.Package newestVersionWithName: 'Browsing-Assist') loadSrc.
(Store.Package newestVersionWithName: 'OSTimeZone') loadSrc.
(Store.Package newestVersionWithName: 'XML Configuration Files') loadSrc.
(Store.Package newestVersionWithName: 'PatchFileDelivery') loadSrc.
(Store.Package newestVersionWithName: 'Twoflower') loadSrc.
(Store.Package newestVersionWithName: 'TwoflowerHTMLParser') loadSrc.
(Store.Package newestVersionWithName: 'Win32TaskbarSupport') loadSrc.
(Store.Package newestVersionWithName: 'Windows TrayIcons') loadSrc.
(Store.Bundle newestVersionWithName: 'WS-Pollock') loadSrc.
(Store.Package newestVersionWithName: 'SandboxedSmalltalk') loadSrc.
(Store.Package newestVersionWithName: 'ScalingScreenGraphicsContext') loadSrc.
(Store.Package newestVersionWithName: 'RelativeURL') loadSrc.
(Store.Package newestVersionWithName: 'File Repository') loadSrc.
(Store.Bundle newestVersionWithName: 'WSBundle') loadSrc.
(Store.Package newestVersionWithName: 'CommonTypeMappings') loadSrc.
(Store.Package newestVersionWithName: 'BtfNamespace') loadSrc.
"now load BottomFeeder"
(Store.Package newestVersionWithName: 'BFSharedicons') loadSrc.
(Store.Bundle newestVersionWithName: 'Blog-Tools') loadSrc.
(Store.Bundle newestVersionWithName: 'BottomFeeder') loadSrc.
"disconnect"
Store.DbRegistry disconnect.
"save image"
ObjectMemory saveAs: 'btf-dev' thenQuit: false.