summaryrefslogtreecommitdiffstats
path: root/extra/firefox/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:25:45 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:25:45 +0100
commit364eb3f4561747275c1649fda3fd60c1c16632f9 (patch)
treef65644af8e9a76e84cc48e97cee5ae22fcbd6575 /extra/firefox/Pkgfile
parent9291e062cb24bac5d7c7059d4dc64669c1917b33 (diff)
downloadnutyx-pakxe-364eb3f4561747275c1649fda3fd60c1c16632f9.tar.gz
nutyx-pakxe-364eb3f4561747275c1649fda3fd60c1c16632f9.tar.bz2
nutyx-pakxe-364eb3f4561747275c1649fda3fd60c1c16632f9.tar.xz
nutyx-pakxe-364eb3f4561747275c1649fda3fd60c1c16632f9.zip
Suppression des ports extra
Diffstat (limited to 'extra/firefox/Pkgfile')
-rw-r--r--extra/firefox/Pkgfile82
1 files changed, 0 insertions, 82 deletions
diff --git a/extra/firefox/Pkgfile b/extra/firefox/Pkgfile
deleted file mode 100644
index c11cc0cf0..000000000
--- a/extra/firefox/Pkgfile
+++ /dev/null
@@ -1,82 +0,0 @@
-# Decript:qion: Navigateur internet de Mozilla
-# URL: http://www.mozilla.com/firefox/
-# Maintainer: NuTyX core team
-# Packager: thierryn1 at hispeed dot ch
-# Depends on: yasm, desktop-file-utils, startup-notification, alsa-lib, mesa3d, gtk, libidl, pango, curl, nss, libnotify, dbus-glib, libevent, wireless_tools
-# Run on: desktop-file-utils,alsa-lib,mesa3d,gtk,libidl,pango,curl,nss,libnotify,dbus-glib
-
-name=firefox
-version=9.0.1
-
-release=1
-
-[ "`uname -m`" == "i686" ] && _ARCH=i686
-[ "`uname -m`" == "x86_64" ] && _ARCH=x86_64
-
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/$name/releases/$version/source/$name-$version.source.tar.bz2\
- firefox.desktop)
-
-build() {
- unset CXXFLAGS
- unset CFLAGS
- wget ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$version/linux-`uname -m`/xpi/fr.xpi
- case `uname -m` in
- x86_64)
- export CXXFLAGS="-O2 -fPIC -pipe -fpermissive"
- export CFLAGS="-O2 -fPIC -pipe -fpermissive";;
- i?86)
- export CXXFLAGS="-fpermissive";;
- esac
-
- LDFLAGS="-Wl,-O1,--hash-style=gnu,--no-keep-memory"
- export MOZ_CO_PROJECT=browser
- export BUILD_OFFICIAL=1
- export MOZILLA_OFFICIAL=1
- export MOZILLA_FIVE_HOME=/usr/lib/firefox
-
- cd mozilla-*
- echo 'pref("intl.locale.matchOS", true);' >> browser/app/profile/firefox.js
-
- PYTHON=python2 ./configure \
- --prefix=/usr \
- --with-system-jpeg \
- --with-system-zlib \
- --with-system-nspr \
- --with-system-nss \
- --with-system-nspr \
- --enable-system-cairo \
- --with-pthreads \
- --enable-official-branding \
- --enable-extensions=default \
- --enable-shared \
- --enable-svg \
- --enable-application=browser \
- --disable-tests \
- --disable-necko-wifi \
- --disable-xpcom-fastload
- make
- install -d \
- $PKG$MOZILLA_FIVE_HOME \
- $PKG/usr/bin \
- $PKG/usr/share/idl/firefox \
- $PKG/usr/include/firefox
-
- cp -rL dist/bin/* $PKG$MOZILLA_FIVE_HOME
- ln -s /usr/lib/firefox/firefox $PKG/usr/bin/firefox
-
- # devel stuff
- cp -frL dist/idl/* $PKG/usr/share/idl/firefox/
- cp -frL dist/include/* $PKG/usr/include/firefox/
- install -m755 -d $PKG/usr/share/{applications,pixmaps}
- install -m644 browser/branding/unofficial/default48.png \
- $PKG/usr/share/pixmaps/firefox.png
- install -m644 ../firefox.desktop \
- $PKG/usr/share/applications/
-
-
- # Suppression des fichiers headers et des dossiers vides
- find $PKG/usr/include/firefox -name "*.h" -delete
- find $PKG/usr/include/firefox -type d -empty -delete
- install -Dm644 $SRC/fr.xpi \
- $PKG/usr/lib/firefox/extensions/langpack-fr@firefox.mozilla.org.xpi
-}