diff options
Diffstat (limited to 'libre/icecat/PKGBUILD')
-rw-r--r-- | libre/icecat/PKGBUILD | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/libre/icecat/PKGBUILD b/libre/icecat/PKGBUILD new file mode 100644 index 000000000..57396b374 --- /dev/null +++ b/libre/icecat/PKGBUILD @@ -0,0 +1,120 @@ +# Maintainer: Figue <ffigue at gmail> +# Contributor: Figue <ffigue at gmail> +# Contributor (Parabola): fauno <fauno@kiwwwi.com.ar> +# Contrubutor (Parabola): vando <facundo@esdebian.org> +# Thank you very much to the older contributors: +# Contributor: evr <evanroman at gmail> +# Contributor: Muhammad 'MJ' Jassim <UnbreakableMJ@gmail.com> + +# Changelog +# =3.6.13 +# * Installed Privacy Extension by default +# * DDG is now the default search engine +# =3.6.9 +# * Added libnotify as required by configure +# =3.6.7 +# * Added duckduckgo.com secure search engine +# =3.6.4 +# * Disabled SafeBrowsing until we find a non-google alternative (25/6/10) +# * Disabled ContentHandlers and other Google/Yahoo! related services + +pkgname=icecat +pkgver=4.0rc2 +_pkgver=4.0-rc2 +pkgrel=3 +_xulver=2.0 +pkgdesc="GNU version of the Firefox browser. SafeBrowsing and other Google services disabled!" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/gnuzilla/" +license=('GPL2' 'MPL' 'LGPL') +depends=("xulrunner=${_xulver}" 'desktop-file-utils') +makedepends=('zip' 'pkg-config' 'diffutils' 'python2' 'wireless_tools' 'yasm' 'mesa') +provides=('firefox') +conflicts=('firefox') +replaces=("firefox=${_pkgver}") +install=icecat.install +#source=(http://ftp.gnu.org/gnu/gnuzilla/${pkgver}/${pkgname}-${pkgver}.tar.xz +source=(ftp://alpha.gnu.org/gnu/gnuzilla/${_pkgver}/${pkgname}-${_pkgver}.tar.bz2 + mozconfig + icecat.desktop + icecat-safe.desktop + mozilla-firefox-1.0-lang.patch + xulrunner-copy-stub.patch +# Search engines + arch-linux-wiki.xml + internet-archive.xml + jamendo-en.xml + logless-search.xml + scroogle-ssl-english.xml + yacy.xml + duck-duck-go-ssl.xml + duck-duck-go-lite.xml +# Default options + firefox.js + region.properties) + +build() { + + ICECATDIR="/usr/lib/${pkgname}-4.0" && export ICECATDIR + + msg2 "Patching some files..." + cd "${srcdir}/${pkgname}-${_pkgver}/" + patch -Np1 -i "${srcdir}/mozilla-firefox-1.0-lang.patch" + patch -Np0 -i "${srcdir}/xulrunner-copy-stub.patch" + + cp --remove-destination ${srcdir}/region.properties ./browser/locales/en-US/chrome/browser-region/ + cp --remove-destination ${srcdir}/firefox.js ./browser/app/profile/ + + msg2 "Starting build..." + cp "${srcdir}/mozconfig" .mozconfig + unset CFLAGS + unset CXXFLAGS + + export LDFLAGS="-Wl,-rpath,${ICECATDIR}" + + #make -j1 -f client.mk build MOZ_MAKE_FLAGS="${MAKEFLAGS}" + ./configure + + touch config* + + make MOZ_MAKE_FLAGS="${MAKEFLAGS}" + msg2 "Build complete" +} + +package() { + ICECATDIR="/usr/lib/${pkgname}-4.0" && export ICECATDIR + + cd "${srcdir}/${pkgname}-${_pkgver}/" + #make -j1 -f client.mk DESTDIR="${pkgdir}" install + make install DESTDIR="${pkgdir}" + + msg2 "Finishing..." + + install -m755 -d ${pkgdir}/usr/share/applications + install -m755 -d ${pkgdir}/usr/share/pixmaps + install -m644 ${srcdir}/${pkgname}-${_pkgver}/browser/branding/unofficial/default48.png ${pkgdir}/usr/share/pixmaps/icecat.png + install -m644 ${srcdir}/icecat.desktop ${pkgdir}/usr/share/applications/ + install -m644 ${srcdir}/icecat-safe.desktop ${pkgdir}/usr/share/applications/ + + msg2 "Removing proprietary and anti-privacy search engines" + rm -f ${pkgdir}${ICECATDIR}/searchplugins/{google,answers,amazondotcom,eBay,yahoo,bing}.xml + msg2 "And provide better ones..." + install -m755 -d ${pkgdir}${ICECATDIR}/searchplugins/ + install -m644 ${srcdir}/*.xml ${pkgdir}${ICECATDIR}/searchplugins/ +} +md5sums=('2e63f5e14540ec58bc8829daa542caf2' + '436db1f6167ffe82fcd71a53ffd80d0e' + 'e81ad01dbc16ba28bf92ba4b7c309ca7' + 'd93fe402b87cd000a869e1fd6badc6c9' + 'bd5db57c23c72a02a489592644f18995' + '5a1938673a367b20ecfa009a5eb767aa' + '3403175087e584a8c5e840cc62310cd9' + '462c68585461f8cdc23c93c46f6ee4cf' + '2d492295c4308f9bba9ece28d8b3af2d' + '937ac0e5392b060d93bd33e761fbfa51' + 'cf97082e77e3ef5f1bd74b1db9329965' + '24528ca3f7f1e1a0ba735231aa3ac1de' + 'c5f00b6b24222aacd5a749d1f59c4d24' + 'e1bda0854de7d764f7401c81bb82b5ef' + '9952048383966926eea6d67384102425' + 'f1c76e7e244257856a386ca2de69bdf0') |