* Added Firefox optional package.

* Added VLC optional package. (I repackaged the latest BeBits version and
  put it on www.yellowbites.com, which is a) much faster to download at
  least from Germany and b) has the Haiku vector icon.)
* Exchanged the Pe package for a recent SVN build which also has the Haiku
  vector icon.

Going to test all these changes on a Linux host soon, seems to work fine
on a BeOS host.

NOTE: The WonderBrush package has gotten a silent update, it includes the
icon in the resources now too, like the other packages with Haiku icon and
also fixes a problem in the Navigation view.

NOTE 2: The build system does not download packages again if generated/download
already contains a .zip with the name of the optional package. So you need 
to delete those to get the recently updated Vision, Pe and WonderBrush
packages.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24291 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2008-03-07 14:12:05 +00:00
parent 5c9a6b8c2a
commit 5a410001da
+31 -1
View File
@@ -574,7 +574,8 @@ if [ IsOptionalHaikuImagePackageAdded Pe ] {
Echo "No optional package Pe available for gcc4" ;
} else {
InstallOptionalHaikuImagePackage Pe
: http://dl.hirschkaefer.de/beos/pe-2.4-x86.zip
# : http://dl.hirschkaefer.de/beos/pe-2.4-x86.zip
: http://www.yellowbites.com/downloads/pe-2.4-x86.zip
: apps
;
AddSymlinkToHaikuImage home config be Applications
@@ -584,6 +585,35 @@ if [ IsOptionalHaikuImagePackageAdded Pe ] {
}
}
# VLC media player
if [ IsOptionalHaikuImagePackageAdded VLC ] {
if $(HAIKU_GCC_VERSION[1]) >= 4 {
Echo "No optional package VLC available for gcc4" ;
} else {
InstallOptionalHaikuImagePackage VLC
: http://www.yellowbites.com/downloads/vlc-0.8.6c.zip
: apps
;
AddSymlinkToHaikuImage home config be Applications
: /boot/apps/vlc-0.8.6c/vlc ;
}
}
# Firefox web browser
if [ IsOptionalHaikuImagePackageAdded Firefox ] {
if $(HAIKU_GCC_VERSION[1]) >= 4 {
Echo "No optional package Firefox available for gcc4" ;
} else {
InstallOptionalHaikuImagePackage Firefox
: http://www.sheltonfamily.org/firefoxbuilds/firefox-2.0.0.12.en-US.beosR5-i586.zip
: apps
;
AddSymlinkToHaikuImage home config be Applications
: /boot/apps/firefox/firefox ;
}
}
#pragma mark - Build The Image