diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-11-17 07:42:22 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-11-17 07:42:22 +0000 |
commit | ab857a10867ab076b0e9e35fce7d8a00c2b92ba6 (patch) | |
tree | d933eab4b792cbce67ea6412f8402c9cd8bdd5d9 /main | |
parent | 62759edf54f9a50c69fe0a042dd20bcaa1bc83e8 (diff) | |
download | aports-ab857a10867ab076b0e9e35fce7d8a00c2b92ba6.tar.bz2 aports-ab857a10867ab076b0e9e35fce7d8a00c2b92ba6.tar.xz |
main/snowfox: removed
Diffstat (limited to 'main')
-rw-r--r-- | main/snowfox/APKBUILD | 101 | ||||
-rw-r--r-- | main/snowfox/firefox-agent.patch | 12 | ||||
-rw-r--r-- | main/snowfox/firefox-defaults.patch | 22 | ||||
-rw-r--r-- | main/snowfox/firefox-restore-fx3-tab-behaviour-as-default.patch | 11 | ||||
-rw-r--r-- | main/snowfox/firefox-restore-status-bar.patch | 37 | ||||
-rw-r--r-- | main/snowfox/firefox-safe.desktop | 11 | ||||
-rw-r--r-- | main/snowfox/firefox-version.patch | 11 | ||||
-rw-r--r-- | main/snowfox/firefox.desktop | 81 | ||||
-rw-r--r-- | main/snowfox/mozconfig | 36 |
9 files changed, 0 insertions, 322 deletions
diff --git a/main/snowfox/APKBUILD b/main/snowfox/APKBUILD deleted file mode 100644 index f4b9edf604..0000000000 --- a/main/snowfox/APKBUILD +++ /dev/null @@ -1,101 +0,0 @@ -# Contributor: William Pitcock <nenolod@dereferenced.org> -# Maintainer: William Pitcock <nenolod@dereferenced.org> -pkgname=snowfox -pkgver=4.0 -_pkgver=4.0 -_xulver=2.0 -pkgrel=0 -pkgdesc="firefox web browser (unofficial branding; patched)" -url="http://www.firefox.com" -arch="" -license="GPL LGPL MPL" -depends="xulrunner" -makedepends="xulrunner-dev>=${_xulver} - - nspr-dev - nss-dev - gtk+-dev - dbus-glib-dev - alsa-lib-dev - libvorbis-dev - libogg-dev - libtheora-dev - wireless-tools-dev - libnotify-dev - libevent-dev - libxt-dev - jpeg-dev - bzip2-dev - hunspell-dev - startup-notification-dev - sqlite-dev - libidl-dev - - autoconf2.13 - - python - zip - yasm - - autoconf - automake - libtool" -install="" -subpackages="" -source="http://releases.mozilla.org/pub/mozilla.org/${pkgname}/releases/${pkgver}/source/firefox-${_pkgver}.source.tar.bz2 - mozconfig - - firefox-restore-fx3-tab-behaviour-as-default.patch - firefox-restore-status-bar.patch - firefox-defaults.patch - firefox-version.patch - - firefox.desktop - firefox-safe.desktop" - -_xulrunner_version="2.0" -_builddir="${srcdir}/mozilla-${_xulrunner_version}" -prepare() { - local i - - cd "$_builddir" - - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done - - cp "${srcdir}/mozconfig" .mozconfig -} - -build() { - cd "$_builddir" - - # mozilla's buildsystem is on drugs, so we just kill our CFLAGS and hope - # for the best. --nenolod - unset CFLAGS - unset CXXFLAGS - - make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS" || return 1 -} - -package() { - cd "$_builddir" - make -j1 DESTDIR="$pkgdir" -f client.mk install || return 1 - - install -m755 -d ${pkgdir}/usr/share/applications - install -m755 -d ${pkgdir}/usr/share/pixmaps - install -m644 ${srcdir}/mozilla-2.0/browser/branding/unofficial/default48.png ${pkgdir}/usr/share/pixmaps/firefox.png - install -m644 ${srcdir}/firefox.desktop ${pkgdir}/usr/share/applications/firefox.desktop - install -m644 ${srcdir}/firefox-safe.desktop ${pkgdir}/usr/share/applications/firefox-safe.desktop -} - -md5sums="3468a2c463b4fc2788ba621e4b511c30 firefox-4.0.source.tar.bz2 -d1ec45f9d953a868483094cce2b3eff5 mozconfig -7cddbb1c76b9038ad1d85311dda81c95 firefox-restore-fx3-tab-behaviour-as-default.patch -a153133cfe74ce269e1e80925e48544c firefox-restore-status-bar.patch -475a0870730c88f48158a4d4ca9812d0 firefox-defaults.patch -0e296aabf8c2b5fd5ef5b3a989bab03a firefox-version.patch -ba96924ece1d77453e462429037a2ce5 firefox.desktop -6f38a5899034b7786cb1f75ad42032b8 firefox-safe.desktop" diff --git a/main/snowfox/firefox-agent.patch b/main/snowfox/firefox-agent.patch deleted file mode 100644 index 299f327e24..0000000000 --- a/main/snowfox/firefox-agent.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nur mozilla-1.9.2.orig/browser/app/profile/firefox.js mozilla-1.9.2/browser/app/profile/firefox.js ---- mozilla-1.9.2.orig/browser/app/profile/firefox.js 2010-04-14 01:21:35.000000000 +0300 -+++ mozilla-1.9.2/browser/app/profile/firefox.js 2010-04-21 00:16:59.673528609 +0300 -@@ -183,7 +183,7 @@ - - pref("general.useragent.locale", "@AB_CD@"); - pref("general.skins.selectedSkin", "classic/1.0"); --pref("general.useragent.extra.firefox", "@APP_UA_NAME@/@APP_VERSION@"); -+pref("general.useragent.extra.firefox", "Firefox/@APP_VERSION@"); - - pref("general.smoothScroll", false); - #ifdef UNIX_BUT_NOT_MAC diff --git a/main/snowfox/firefox-defaults.patch b/main/snowfox/firefox-defaults.patch deleted file mode 100644 index cce60cd5de..0000000000 --- a/main/snowfox/firefox-defaults.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -Nur mozilla-1.9.2.old//browser/branding/unofficial/pref/firefox-branding.js mozilla-1.9.2/browser/branding/unofficial/pref/firefox-branding.js ---- mozilla-1.9.2.old//browser/branding/unofficial/pref/firefox-branding.js 2010-04-14 01:21:35.000000000 +0300 -+++ mozilla-1.9.2/browser/branding/unofficial/pref/firefox-branding.js 2010-04-20 23:55:01.290102941 +0300 -@@ -1,5 +1,5 @@ --pref("startup.homepage_override_url","http://www.mozilla.org/projects/%APP%/%VERSION%/whatsnew/"); --pref("startup.homepage_welcome_url","http://www.mozilla.org/projects/%APP%/%VERSION%/firstrun/"); -+pref("startup.homepage_override_url","http://www.mozilla.com/%APP%/%VERSION%/whatsnew/"); -+pref("startup.homepage_welcome_url","http://www.mozilla.com/%APP%/%VERSION%/firstrun/"); - pref("browser.panorama.welcome_url", "http://www.mozilla.com/firefox/panorama/"); - // The time interval between checks for a new version (in seconds) - // nightly=8 hours, official=24 hours -@@ -14,7 +14,7 @@ - pref("app.update.url.details", "http://www.mozilla.org/projects/%APP%/"); - - // Release notes and vendor URLs --pref("app.releaseNotesURL", "http://www.mozilla.org/projects/%APP%/%VERSION%/releasenotes/"); --pref("app.vendorURL", "http://www.mozilla.org/projects/%APP%/"); -+pref("app.releaseNotesURL", "http://www.mozilla.com/%APP%/%VERSION%/releasenotes/"); -+pref("app.vendorURL", "http://www.mozilla.com/%APP%/"); - - // Search codes belong only in builds with official branding - pref("browser.search.param.yahoo-fr", ""); diff --git a/main/snowfox/firefox-restore-fx3-tab-behaviour-as-default.patch b/main/snowfox/firefox-restore-fx3-tab-behaviour-as-default.patch deleted file mode 100644 index a9102a65ba..0000000000 --- a/main/snowfox/firefox-restore-fx3-tab-behaviour-as-default.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- mozilla-2.0.orig/browser/base/content/browser.xul -+++ mozilla-2.0/browser/base/content/browser.xul -@@ -470,7 +470,7 @@ - #else - iconsize="large" - #endif -- tabsontop="true" -+ tabsontop="false" - persist="tabsontop"> - <!-- Menu --> - <toolbar type="menubar" id="toolbar-menubar" class="chromeclass-menubar" customizable="true" diff --git a/main/snowfox/firefox-restore-status-bar.patch b/main/snowfox/firefox-restore-status-bar.patch deleted file mode 100644 index f492abb59d..0000000000 --- a/main/snowfox/firefox-restore-status-bar.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- mozilla-2.0.orig/browser/base/content/browser.xul -+++ mozilla-2.0/browser/base/content/browser.xul -@@ -992,12 +992,18 @@ - contentcontextmenu="contentAreaContextMenu" - autocompletepopup="PopupAutoComplete" - onclick="return contentAreaClick(event, false);"/> -- <statuspanel id="statusbar-display" label=""/> - </vbox> - <vbox id="browser-border-end" hidden="true" layer="true"/> - </hbox> - - <vbox id="browser-bottombox" layer="true"> -+ <statusbar id="status-bar" ordinal="1000" -+#ifdef WINCE -+ hidden="true" -+#endif -+ class="chromeclass-status"> -+ <statusbarpanel id="statusbar-display" label=""/> -+ </statusbar> - <toolbar id="addon-bar" - toolbarname="&addonBarCmd.label;" accesskey="&addonBarCmd.accesskey;" - collapsed="true" -@@ -1005,13 +1011,12 @@ - context="toolbar-context-menu" toolboxid="navigator-toolbox" - mode="icons" iconsize="small" defaulticonsize="small" - lockiconsize="true" -- defaultset="addonbar-closebutton,spring,status-bar" -+ defaultset="addonbar-closebutton,spring" - customizable="true" - key="key_toggleAddonBar"> - <toolbarbutton id="addonbar-closebutton" - tooltiptext="&addonBarCloseButton.tooltip;" - oncommand="setToolbarVisibility(this.parentNode, false);"/> -- <statusbar id="status-bar" ordinal="1000"/> - </toolbar> - </vbox> - diff --git a/main/snowfox/firefox-safe.desktop b/main/snowfox/firefox-safe.desktop deleted file mode 100644 index 1538fc6748..0000000000 --- a/main/snowfox/firefox-safe.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Exec=firefox -safe-mode %u -Icon=firefox -Type=Application -Terminal=false -MultipleArgs=false -Name=Firefox - Safe Mode -GenericName=Web Browser - Safe Mode -StartupNotify=false -Categories=Network;WebBrowser; diff --git a/main/snowfox/firefox-version.patch b/main/snowfox/firefox-version.patch deleted file mode 100644 index 2b1aeb41d3..0000000000 --- a/main/snowfox/firefox-version.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- mozilla-2.0.orig/browser/installer/Makefile.in 2009-07-18 13:32:35.000000000 +0200 -+++ mozilla-2.0/browser/installer/Makefile.in 2009-07-18 13:33:12.000000000 +0200 -@@ -43,6 +43,8 @@ - - include $(DEPTH)/config/autoconf.mk - -+MOZ_APP_VERSION="3.6" -+ - include $(topsrcdir)/config/rules.mk - - MOZ_PKG_REMOVALS = $(srcdir)/removed-files.in diff --git a/main/snowfox/firefox.desktop b/main/snowfox/firefox.desktop deleted file mode 100644 index d048ce46c3..0000000000 --- a/main/snowfox/firefox.desktop +++ /dev/null @@ -1,81 +0,0 @@ -[Desktop Entry] -Exec=firefox %u -Icon=firefox -Type=Application -Terminal=false -Name=Firefox -Name[bn]=ফায়ারফক্স3 -Name[eo]=Fajrovulpo3 -Name[fi]=Firefox3 -Name[pa]=ਫਾਇਰਫੋਕਸ3 -Name[tg]=Рӯбоҳи оташин3 -GenericName=Web Browser -GenericName[af]=Web Blaaier -GenericName[ar]=متصفح ويب -GenericName[az]=Veb Səyyahı -GenericName[bg]=Браузър -GenericName[bn]=ওয়েব ব্রাউজার -GenericName[br]=Furcher ar Gwiad -GenericName[bs]=WWW Preglednik -GenericName[ca]=Fullejador web -GenericName[cs]=WWW prohlížeč -GenericName[cy]=Porydd Gwe -GenericName[da]=Browser -GenericName[de]=Web-Browser -GenericName[el]=Περιηγητής Ιστού -GenericName[eo]=TTT-legilo -GenericName[es]=Navegador web -GenericName[et]=Veebilehitseja -GenericName[eu]=Web arakatzailea -GenericName[fa]=مرورگر وب -GenericName[fi]=WWW-selain -GenericName[fo]=Alnótsfar -GenericName[fr]=Navigateur web -GenericName[gl]=Navegador Web -GenericName[he]=דפדפן אינטרנט -GenericName[hi]=वेब ब्राउज़र -GenericName[hr]=Web preglednik -GenericName[hu]=Webböngésző -GenericName[is]=Vafri -GenericName[it]=Browser Web -GenericName[ja]=ウェブブラウザ -GenericName[ko]=웹 브라우저 -GenericName[lo]=ເວັບບຣາວເຊີ -GenericName[lt]=Žiniatinklio naršyklė -GenericName[lv]=Web Pārlūks -GenericName[mk]=Прелистувач на Интернет -GenericName[mn]=Веб-Хөтөч -GenericName[nb]=Nettleser -GenericName[nds]=Nettkieker -GenericName[nl]=Webbrowser -GenericName[nn]=Nettlesar -GenericName[nso]=Seinyakisi sa Web -GenericName[pa]=ਵੈਬ ਝਲਕਾਰਾ -GenericName[pl]=Przeglądarka WWW -GenericName[pt]=Navegador Web -GenericName[pt_BR]=Navegador Web -GenericName[ro]=Navigator de web -GenericName[ru]=Веб-браузер -GenericName[se]=Fierpmádatlogan -GenericName[sk]=Webový prehliadač -GenericName[sl]=Spletni brskalnik -GenericName[sr]=Веб претраживач -GenericName[sr@Latn]=Veb pretraživač -GenericName[ss]=Ibrawuza yeWeb -GenericName[sv]=Webbläsare -GenericName[ta]=வலை உலாவி -GenericName[tg]=Тафсиргари вэб -GenericName[th]=เว็บบราวเซอร์ -GenericName[tr]=Web Tarayıcı -GenericName[uk]=Навігатор Тенет -GenericName[uz]=Веб-браузер -GenericName[ven]=Buronza ya Webu -GenericName[vi]=Trình duyệt Web -GenericName[wa]=Betchteu waibe -GenericName[xh]=Umkhangeli zincwadi we Web -GenericName[zh_CN]=网页浏览器 -GenericName[zh_TW]=網頁瀏覽器 -GenericName[zu]=Umcingi we-Web -MimeType=text/html; -StartupNotify=true -Categories=Network;WebBrowser; diff --git a/main/snowfox/mozconfig b/main/snowfox/mozconfig deleted file mode 100644 index e68be73fac..0000000000 --- a/main/snowfox/mozconfig +++ /dev/null @@ -1,36 +0,0 @@ -. $topsrcdir/browser/config/mozconfig - -ac_add_options --prefix=/usr -ac_add_options --libdir=/usr/lib -ac_add_options --with-system-nspr -ac_add_options --with-system-nss -ac_add_options --with-system-jpeg -ac_add_options --with-system-zlib -ac_add_options --with-pthreads -ac_add_options --disable-tests -ac_add_options --disable-debug -ac_add_options --enable-optimize -ac_add_options --disable-installer -ac_add_options --enable-xinerama -ac_add_options --enable-default-toolkit=cairo-gtk2 -ac_add_options --disable-xprint -ac_add_options --enable-strip -ac_add_options --enable-pango -ac_add_options --enable-svg -ac_add_options --enable-canvas -ac_add_options --enable-startup-notification -ac_add_options --enable-libxul -ac_add_options --disable-crashreporter -ac_add_options --disable-updater -ac_add_options --with-libxul-sdk=/usr/lib/xulrunner-devel-1.9.2 -ac_add_options --enable-safe-browsing -ac_add_options --with-branding=browser/branding/unofficial -ac_add_options --enable-chrome-format=jar - -export BUILD_OFFICIAL=1 -export MOZILLA_OFFICIAL=1 -export USE_SHORT_LIBNAME=1 - -mk_add_options BUILD_OFFICIAL=1 -mk_add_options MOZILLA_OFFICIAL=1 -mk_add_options USE_SHORT_LIBNAME=1 |