diff options
author | Sibelle <lesibel@free.fr> | 2011-06-15 13:47:25 +0200 |
---|---|---|
committer | Sibelle <lesibel@free.fr> | 2011-06-15 13:47:25 +0200 |
commit | a456206f69cd989b1ccbba465edb0ec4a9e77a60 (patch) | |
tree | 02f26e134106bd6a54ec99b6b941fb3e16f39752 /extra/chromium/Pkgfile | |
parent | 04c1d5dc4dcf6311fb0836d8490f88bb318dc173 (diff) | |
download | nutyx-extra-a456206f69cd989b1ccbba465edb0ec4a9e77a60.tar.gz nutyx-extra-a456206f69cd989b1ccbba465edb0ec4a9e77a60.tar.bz2 nutyx-extra-a456206f69cd989b1ccbba465edb0ec4a9e77a60.tar.xz nutyx-extra-a456206f69cd989b1ccbba465edb0ec4a9e77a60.zip |
chromium 12.0.742.100-1 ajout
Diffstat (limited to 'extra/chromium/Pkgfile')
-rw-r--r-- | extra/chromium/Pkgfile | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/extra/chromium/Pkgfile b/extra/chromium/Pkgfile new file mode 100644 index 000000000..75b66b163 --- /dev/null +++ b/extra/chromium/Pkgfile @@ -0,0 +1,102 @@ +# Description: Navigateur de chez Google +# URL: http://www.google.com +# Maintainer: NuTyX core team +# Packager: lesibel at free dot fr +# Depends on: perl, yasm, mesa3d, gperf, libgnome-keyring ,xorg-libxscrnsaver, xorg-libxrandr, xorg-libxcursor, xorg-libxinerama, xorg-libxtst, gtk, dbus-glib, nss, alsa-lib, xdg-utils, bzip2, libevent, dejavu-ttf, desktop-file-utils, hicolor-icon-theme +# Run on: gtk,dbus-glib,nss,alsa-lib,xdg-utils,bzip2,libevent,dejavu-ttf,desktop-file-utils,hicolor-icon-theme + +name=chromium +version=12.0.742.100 +release=1 +source=(http://build.chromium.org/official/chromium-$version.tar.bz2 + chromium.desktop + chromium.sh + chromium-gcc-4.6.patch) + +build() { + cd "$SRC/chromium-$version" + + # Patches to fix gcc 4.6 compilation from + # http://code.google.com/p/chromium/issues/detail?id=80071 + # http://code.google.com/p/chromium/issues/detail?id=70746 + # http://code.google.com/p/chromium/issues/detail?id=46411 + patch -Np0 -i "$SRC/chromium-gcc-4.6.patch" + +### Configure + + # Use Python 2 + find . -type f -exec sed -i -r \ + -e 's|/usr/bin/python$|\02|g' \ + -e 's|(/usr/bin/python2)\.4$|\1|g' \ + {} + + # There are still a lot of relative calls which need a workaround + mkdir "$SRC/python2-path" + ln -s /usr/bin/python2 "$SRC/python2-path/python" + export PATH="$SRC/python2-path:$PATH" + + # We need to disable system_ssl until "next protocol negotiation" support is + # available in our nss package. + # (See https://bugzilla.mozilla.org/show_bug.cgi?id=547312) + + build/gyp_chromium -f make build/all.gyp --depth=. \ + -Dgcc_version=45 \ + -Dno_strict_aliasing=1 \ + -Dwerror= \ + -Dlinux_sandbox_path=/usr/lib/chromium/chromium-sandbox \ + -Dlinux_strip_binary=1 \ + -Drelease_extra_cflags="$CFLAGS" \ + -Dffmpeg_branding=Chrome \ + -Dproprietary_codecs=1 \ + -Duse_system_libjpeg=1 \ + -Duse_system_libxslt=0 \ + -Duse_system_libxml=0 \ + -Duse_system_bzip2=1 \ + -Duse_system_zlib=1 \ + -Duse_system_libpng=0 \ + -Duse_system_ffmpeg=0 \ + -Duse_system_yasm=1 \ + -Duse_system_libevent=1 \ + -Duse_system_ssl=0 \ + -Duse_gconf=0 \ + $([[ $CARCH == i686 ]] && echo '-Ddisable_sse2=1') + + make chrome chrome_sandbox BUILDTYPE=Release + cd $SRC/chromium-$version + + install -D out/Release/chrome $PKG/usr/lib/chromium/chromium + + install -Dm4755 -o root -g root out/Release/chrome_sandbox \ + $PKG/usr/lib/chromium/chromium-sandbox + + install -Dm644 out/Release/chrome.pak $PKG/usr/lib/chromium/chrome.pak + + install -Dm644 out/Release/resources.pak \ + $PKG/usr/lib/chromium/resources.pak + + install -D out/Release/libffmpegsumo.so \ + $PKG/usr/lib/chromium/libffmpegsumo.so + + # These links are only needed when building with system ffmpeg + #ln -s /usr/lib/libavcodec.so.52 ${PKG}/usr/lib/chromium/ + #ln -s /usr/lib/libavformat.so.52 ${PKG}/usr/lib/chromium/ + #ln -s /usr/lib/libavutil.so.50 ${PKG}/usr/lib/chromium/ + + cp -a out/Release/locales out/Release/resources $PKG/usr/lib/chromium/ + + find $PKG/usr/lib/chromium/ -name '*.d' -type f -delete + + install -Dm644 out/Release/chrome.1 $PKG/usr/share/man/man1/chromium.1 + + install -Dm644 $SRC/chromium.desktop \ + $PKG/usr/share/applications/chromium.desktop + + for size in 16 22 24 32 48 64 128 256; do + install -Dm644 chrome/app/theme/chromium/product_logo_$size.png \ + $PKG/usr/share/icons/hicolor/${size}x${size}/apps/chromium.png + done + + install -D $SRC/chromium.sh $PKG/usr/bin/chromium + + install -Dm644 LICENSE $PKG/usr/share/licenses/chromium/LICENSE +} + |