# Template file for 'chromium' pkgname=chromium version=19.0.1084.46 wrksrc=$pkgname create_wrksrc=yes create_srcdir=yes build_requires=27 build_wrksrc=${pkgname}-${version} distfiles=" http://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$version.tar.bz2 http://commondatastorage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/$version/naclsdk_linux.bz2" short_desc="Google's attempt at creating a safer, faster, and more stable browser" maintainer="Juan RP " homepage="http://www.chromium.org/" license="BSD" checksum=" 2fb77e5d155343a828bd04b6b9d4469fce3033dc6b9f8b53e34a9d02c464639f 2256327dc58792309911fe88996527925b79ddc7729ec78548b4adf5e4983d42" long_desc=" Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. Chromium serves as a base for Google Chrome, which is Chromium rebranded (name and logo) with very few additions such as usage tracking and an auto-updater system. This package contains the Chromium browser." gtk_iconcache_dirs="/usr/share/icons/hicolor" Add_dependency build pkg-config Add_dependency build which Add_dependency build unzip Add_dependency build yasm Add_dependency build flex Add_dependency build gperf Add_dependency build perl ">=0" Add_dependency build python ">=0" Add_dependency build libgcrypt-devel Add_dependency build libelf-devel Add_dependency build mit-krb5-devel Add_dependency build libXrender-devel Add_dependency build libXScrnSaver-devel Add_dependency build libXcomposite-devel Add_dependency build libX11-devel Add_dependency build libXi-devel Add_dependency build gtk+-devel Add_dependency build libevent-devel Add_dependency build nss-devel Add_dependency build alsa-lib-devel Add_dependency build dbus-glib-devel Add_dependency build libXdamage-devel Add_dependency build libXtst-devel Add_dependency build pam-devel Add_dependency build libgnome-keyring-devel Add_dependency build libvpx-devel Add_dependency build speex-devel Add_dependency build libwebp-devel Add_dependency build pulseaudio-devel Add_dependency build cups-devel Add_dependency build hunspell-devel Add_dependency build libflac-devel if [ "$XBPS_MACHINE" = "x86_64" ]; then Add_dependency build zlib32 Add_dependency build libstdc++32 Add_dependency build gcc-multilib fi Add_dependency run desktop-file-utils Add_dependency run hicolor-icon-theme pre_configure() { # http://code.google.com/p/chromium/issues/detail?id=109527 sed -i 's|glib/gutils.h|glib.h|' ui/base/l10n/l10n_util.cc # Unpack nacl, file is a real POSIX tar archive compressed with bzip2. tar xf $wrksrc/naclsdk_linux -C $wrksrc ln -s $wrksrc/pepper_${version%%.*}/toolchain/linux_x86_newlib \ native_client/toolchain/linux_x86_newlib } do_configure() { # 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=. \ -Dwerror= -Dlinux_sandbox_path=/usr/lib/chromium/chromium-sandbox \ -Drelease_extra_cflags="$CFLAGS" -Dlinux_use_gold_binary=0 \ -Dlinux_use_gold_flags=0 -Dffmpeg_branding=Chrome \ -Dproprietary_codecs=1 -Duse_system_libjpeg=1 \ -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 \ -Duse_system_xdg_utils=1 -Duse_system_vpx=1 \ -Duse_system_speex=1 -Duse_system_libwebp=1 \ -Duse_hunspell=1 -Duse_system_flac=1 -Duse_gconf=0 } do_build() { make BUILDTYPE=Release ${makejobs} chrome chrome_sandbox } do_install() { vinstall out/Release/chrome 755 usr/lib/${pkgname} ${pkgname} vinstall out/Release/chrome_sandbox 4755 usr/lib/${pkgname} ${pkgname}-sandbox vinstall out/Release/chrome.pak 644 usr/lib/${pkgname} vinstall out/Release/resources.pak 644 usr/lib/${pkgname} vinstall out/Release/libffmpegsumo.so 755 usr/lib/${pkgname} vinstall out/Release/libppGoogleNaClPluginChrome.so 755 usr/lib/${pkgname} vcopy "out/Release/nacl_irt_x86_*.nexe" usr/lib/${pkgname} for f in locales resources; do vcopy out/Release/${f} usr/lib/chromium done find ${DESTDIR}/usr/lib/chromium/ -name '*.d' -type f -delete vinstall out/Release/chrome.1 644 usr/share/man/man1 chromium.1 vinstall ${FILESDIR}/chromium.desktop 644 usr/share/applications for size in 16 22 24 32 48 64 128 256; do install -Dm644 "chrome/app/theme/chromium/product_logo_${size}.png" \ ${DESTDIR}/usr/share/icons/hicolor/${size}x${size}/apps/chromium.png done vinstall ${FILESDIR}/chromium.sh 755 usr/bin chromium vinstall LICENSE 644 usr/share/licenses/${pkgname} }