OSDN Git Service

libhb: Fix linux compilation. Only set the pthread mutex type on cygwin since it...
[handbrake-jp/handbrake-jp-git.git] / Jamrules
index 2125459..490aa87 100644 (file)
--- a/Jamrules
+++ b/Jamrules
@@ -1,7 +1,7 @@
 # $Id: Jamrules,v 1.59 2005/11/04 16:06:21 titer Exp $
 #
 # This file is part of the HandBrake source code.
-# Homepage: <http://handbrake.m0k.org/>.
+# Homepage: <http://handbrake.fr/>.
 # It may be used under the terms of the GNU General Public License.
 
 include config.jam ;
@@ -19,12 +19,14 @@ HB_VERSION  = 0.9.3 ;
 # the svn revision and are marked as unstable.
 if $(SNAPSHOT) = 1
 {
-HB_VERSION = "$(HB_VERSION)svn$(SVN_REV)" ;
+HB_VERSION = "svn$(SVN_REV)" ;
 HB_BUILD = "$(BUILD_DATE)01" ;
+APPCAST_URL = "http://handbrake.fr/appcast_unstable.xml" ;
 }
 else
 {
 HB_BUILD = "$(BUILD_DATE)00" ;
+APPCAST_URL = "http://handbrake.fr/appcast.xml" ;
 }
 
 DEFINES    += HB_VERSION=\\\"$(HB_VERSION)\\\" HB_BUILD=$(HB_BUILD) ;
@@ -45,11 +47,7 @@ actions OSXApp
 {
     $(RM) $(<) macosx/build/HandBrake.app && \
       ( cd macosx && \
-         defaults write "$(FULL_PATH)"/macosx/HandBrake CFBundleGetInfoString '"$(HB_VERSION)"' &&\
-         defaults write "$(FULL_PATH)"/macosx/HandBrake CFBundleShortVersionString '"$(HB_VERSION)"' &&\
-         defaults write "$(FULL_PATH)"/macosx/HandBrake CFBundleVersion '"$(HB_BUILD)"' &&\
-         plutil -convert xml1 "$(FULL_PATH)"/macosx/HandBrake.plist &&\
-        xcodebuild OTHER_CFLAGS_QUOTED_1="-g -HB_BUILD="$(HB_BUILD)" -HB_VERSION=\\\"$(HB_VERSION)\\\" -DHB_BUILD="$(HB_BUILD)" -DHB_VERSION=\\\"$(HB_VERSION)\\\" -CURRENT_PROJECT_VERSION=\\\"$(HB_VERSION)\\\" " -target libhb -target HandBrake -target HandBrakeCLI ) && \
+        xcodebuild HB_BUILD="$(HB_BUILD)" HB_VERSION="$(HB_VERSION)" APPCAST_URL="$(APPCAST_URL)" -target libhb -target HandBrake -target HandBrakeCLI ) && \
       for i in $(LANGUAGES) ; do \
         ( cd $(<)/Contents/Resources && \
           cp -r English.lproj $i.lproj && \
@@ -70,13 +68,13 @@ actions OSXPackage
       cp CREDITS "HandBrake $(HB_VERSION)/CREDITS.txt" && \
       cp THANKS "HandBrake $(HB_VERSION)/THANKS.txt" && \
       ( echo "[InternetShortcut]" && \
-        echo "URL=http://handbrake.m0k.org/" ) > \
+        echo "URL=http://handbrake.fr/" ) > \
         "HandBrake $(HB_VERSION)/HandBrake Homepage.url" && \
       ( echo "[InternetShortcut]" && \
-        echo "URL=http://handbrake.m0k.org/forum/" ) > \
+        echo "URL=http://forum.handbrake,fr/" ) > \
         "HandBrake $(HB_VERSION)/HandBrake Forums.url" && \
       ( echo "[InternetShortcut]" && \
-        echo "URL=http://handbrake.m0k.org/contribute.php" ) > \
+        echo "URL=http://handbrake.fr/?article=development" ) > \
         "HandBrake $(HB_VERSION)/Contribute.url" && \
       cp -r HandBrake.app "HandBrake $(HB_VERSION)" && \
       zip -9 -r $(<) "HandBrake $(HB_VERSION)" && \