[haiku-commits] r36459 - haiku/trunk/build/jam

  • From: mattmadia@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 25 Apr 2010 05:41:06 +0200 (CEST)

Author: mmadia
Date: 2010-04-25 05:41:06 +0200 (Sun, 25 Apr 2010)
New Revision: 36459
Changeset: http://dev.haiku-os.org/changeset/36459/haiku

Modified:
   haiku/trunk/build/jam/OptionalPackages
Log:
Upated to utilize the recent enhancements to InstallOptionalHaikuImagePackage.
So far, only the packages specified in @alpha-* were checked. A combintation
of `objdump -x $lib | grep NEEDED` and nm $lib | grep "\w _Z"` was used.


Modified: haiku/trunk/build/jam/OptionalPackages
===================================================================
--- haiku/trunk/build/jam/OptionalPackages      2010-04-24 21:54:49 UTC (rev 
36458)
+++ haiku/trunk/build/jam/OptionalPackages      2010-04-25 03:41:06 UTC (rev 
36459)
@@ -98,6 +98,7 @@
                        : $(baseURL)/apr-1.4.2-r1a2-x86-gcc2-2010-04-22.zip
                        :
                        : true
+                       : true
                ;
        }
 }
@@ -112,6 +113,7 @@
                        : $(baseURL)/apr-util-1.3.9-r1a2-x86-gcc2-2010-04-22.zip
                        :
                        : true
+                       : true
                ;
        }
 }
@@ -284,6 +286,7 @@
                        : $(baseURL)/bzip2-1.0.5-r1a2-x86-gcc2-2010-04-21.zip
                        :
                        : true
+                       : true
                ;
        }
 }
@@ -363,6 +366,8 @@
                InstallOptionalHaikuImagePackage 
curl-7.20.1-r1a2-x86-gcc2-2010-04-22.zip
                        : $(baseURL)/curl-7.20.1-r1a2-x86-gcc2-2010-04-22.zip
                        :
+                       :
+                       : true
                ;
        }
 }
@@ -396,6 +401,7 @@
        InstallOptionalHaikuImagePackage 
libtool-2.2.6b-r1a2-x86-gcc2-2010-04-21.zip
                : $(baseURL)/libtool-2.2.6b-r1a2-x86-gcc2-2010-04-21.zip
                :
+               : true
                : true ;
        InstallOptionalHaikuImagePackage 
texinfo-4.13a-r1a2-x86-gcc2-2009-04-21.zip
                : $(baseURL)/texinfo-4.13a-r1a2-x86-gcc2-2010-04-21.zip
@@ -573,6 +579,7 @@
                        : $(baseURL)/expat-2.0.1-r1a2-x86-gcc2-2010-04-22.zip
                        :
                        : true
+                       : true
                ;
        }
 }
@@ -662,6 +669,8 @@
                InstallOptionalHaikuImagePackage 
libiconv-1.13.1-r1a2-x86-gcc2-2010-04-21.zip
                        : 
$(baseURL)/libiconv-1.13.1-r1a2-x86-gcc2-2010-04-21.zip
                        :
+                       :
+                       : true
                ;
        }
 }
@@ -690,6 +699,8 @@
                InstallOptionalHaikuImagePackage 
libxml2-2.7.7-r1a2-x86-gcc2-2010-04-22.zip
                        : $(baseURL)/libxml2-2.7.7-r1a2-x86-gcc2-2010-04-22.zip
                        :
+                       :
+                       : true
                ;
        }
 }
@@ -768,6 +779,7 @@
                        : $(baseURL)/neon-0.29.3-r1a2-x86-gcc2-2010-04-22.zip
                        :
                        : true
+                       : true
                ;
        }
 }
@@ -886,6 +898,8 @@
                InstallOptionalHaikuImagePackage $(HAIKU_OPENSSL_PACKAGE)
                        : $(HAIKU_OPENSSL_URL)
                        :
+                       :
+                       : true
                ;
        }
 }
@@ -966,6 +980,7 @@
                        : $(baseURL)/perl-5.10.1-r1a1-x86-gcc2-2009-09-08.zip
                        :
                        : true
+                       : true
                ;
        }
 }
@@ -980,6 +995,7 @@
                        : $(baseURL)/python-2.6.5-r1a2-x86-gcc2-2010-04-22.zip
                        :
                        : true
+                       : true
                ;
        }
 }
@@ -1020,6 +1036,8 @@
                InstallOptionalHaikuImagePackage 
sqlite-3.6.23-r1a2-x86-gcc2-2010-04-22.zip
                        : $(baseURL)/sqlite-3.6.23-r1a2-x86-gcc2-2010-04-22.zip
                        :
+                       :
+                       : true
                ;
        }
 }
@@ -1034,6 +1052,7 @@
                        : $(baseURL)/subversion-1.6.9-x86-gcc2-2010-04-08.zip
                        :
                        : true
+                       : true
                ;
        }
 }
@@ -1286,6 +1305,8 @@
                InstallOptionalHaikuImagePackage 
xz-utils-4.999.9-x86-gcc4-2010-02-25.zip
                        : $(baseURL)/xz-utils-4.999.9-x86-gcc4-2010-02-25.zip
                        :
+                       :
+                       : true
                ;
                AddExpanderRuleToHaikuImage "application/x-xz" : .tar.xz
                        : "tar -Jtvf \\0045s"


Other related posts:

  • » [haiku-commits] r36459 - haiku/trunk/build/jam - mattmadia