diff options
author | tnut <thierryn1 at hispeed dot ch> | 2011-03-19 15:42:31 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2011-03-19 15:42:31 +0100 |
commit | 085ab0115416398c0e2e45eb9893d8adb21d7b32 (patch) | |
tree | 218c8c7c3ad821536961505178b80c73943bf71e /extra/chromium/Pkgfile | |
parent | 1722e0379d9f5cfbde773736620da7989043943d (diff) | |
download | nutyx-extra-085ab0115416398c0e2e45eb9893d8adb21d7b32.tar.gz nutyx-extra-085ab0115416398c0e2e45eb9893d8adb21d7b32.tar.bz2 nutyx-extra-085ab0115416398c0e2e45eb9893d8adb21d7b32.tar.xz nutyx-extra-085ab0115416398c0e2e45eb9893d8adb21d7b32.zip |
chromium dans ouvert
Diffstat (limited to 'extra/chromium/Pkgfile')
-rw-r--r-- | extra/chromium/Pkgfile | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/extra/chromium/Pkgfile b/extra/chromium/Pkgfile deleted file mode 100644 index f4938ba3d..000000000 --- a/extra/chromium/Pkgfile +++ /dev/null @@ -1,103 +0,0 @@ -# Description: Navigateur de chez Google -# URL: http://www.google.com -# Maintainer: NuTyX core team -# Packager: sibelle at free dot fr -# Depends on: python, gperf, yasm, mesa3d, libgnome-keyring, nss, gconf, alsa-lib, xdg-utils, hicolor-icon-theme, bzip2, libevent, xorg-libxscrnsaver, xorg-libxrandr, xorg-libxcursor, xorg-libxinerama, xorg-libxtst, libjpeg, libpng, cups, zlib -# Run on: yasm,nss,gconf,alsa-lib,gtk,xdg-utils,hicolor-icon-theme,bzip2,libevent,libgnome-keyring - -name=chromium -version=10.0.633.0 -release=2 - -source=(http://build.chromium.org/buildbot/official/$name-$version.tar.bz2 \ - http://nutyx.meticul.eu/files/patchs/$name/{chromium.desktop,chromium.sh,gyp-make.patch}) - -build() { - -### Compilation des sources - - cd $name-$version - -### Patch - # workaround for gcc 4.5 - # see http://code.google.com/p/chromium/issues/detail?id=41887 - export CFLAGS="${CFLAGS} -fno-ipa-cp" - - find . -type f -exec \ - sed -E 's#(/usr/bin/python)$#\12#g;s#(/usr/bin/python2)\.4$#\1#g' -i {} \; - # 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} - -# patch -p0 -i $SRC/gyp-make.patch - -### Configure - build/gyp_chromium -f make build/all.gyp --depth=. \ - -Dgcc_version=44 \ - -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=1 \ - -Duse_system_ffmpeg=0 \ - -Duse_system_yasm=1 \ - -Duse_system_libevent=1 \ - -Duse_system_ssl=0 \ - -Denable_multilib=0 \ - -Dlinux_use_tcmalloc=0 \ - -Dv8_use_snapshot=0 \ - $([ "${CARCH}" == 'i686' ] && echo '-Ddisable_sse2=1') - -# -Dtarget_arch=ia32 \ - - - make chrome chrome_sandbox BUILDTYPE=Release - - cd $SRC/$name-$version - - install -m 0755 -D out/Release/chrome \ - $PKG/usr/lib/chromium/chromium - install -m 4555 -o root -g root -D out/Release/chrome_sandbox \ - $PKG/usr/lib/chromium/chromium-sandbox - install -m 0644 -D out/Release/chrome.pak \ - $PKG/usr/lib/chromium/chrome.pak - install -m 0644 -D out/Release/resources.pak \ - $PKG/usr/lib/chromium/resources.pak - install -m 0755 -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/libavcodec.so.52 - ln -s /usr/lib/libavformat.so.52 $PKG/usr/lib/chromium/libavformat.so.52 - ln -s /usr/lib/libavutil.so.50 $PKG/usr/lib/chromium/libavutil.so.50 - - cp -a out/Release/locales out/Release/resources \ - $PKG/usr/lib/chromium/ - - find $PKG/usr/lib/chromium/ -name '*.d' -type f -delete - - install -m 0644 -D out/Release/chrome.1 \ - $PKG/usr/share/man/man1/chromium.1 - - install -m 0644 -D ../chromium.desktop \ - $PKG/usr/share/applications/chromium.desktop - - for size in 16 32 48 256; do - install -m 0644 -D \ - chrome/app/theme/chromium/product_logo_${size}.png \ - $PKG/usr/share/icons/hicolor/${size}x${size}/apps/chromium.png - done - - install -m 0755 -D ../chromium.sh $PKG/usr/bin/chromium - - install -m 0644 -D LICENSE $PKG/usr/share/licenses/chromium/LICENSE -} |