summaryrefslogtreecommitdiff
path: root/manualPorts/thunderbird/Pkgfile
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-08-07 13:21:35 +0200
committerErich Eckner <git@eckner.net>2018-08-07 13:21:35 +0200
commit518a01817961808a0efae695f92218ecbdac5485 (patch)
tree318f543d684d48bb0ff04e13ed7ce523d4e0dc1f /manualPorts/thunderbird/Pkgfile
parent375fa7ecf06ce781a8fcdbc40365d0bab4533187 (diff)
downloadcrux-ports-518a01817961808a0efae695f92218ecbdac5485.tar.xz
thunderbird: 52.9.1 -> 60.0
Diffstat (limited to 'manualPorts/thunderbird/Pkgfile')
-rw-r--r--manualPorts/thunderbird/Pkgfile23
1 files changed, 9 insertions, 14 deletions
diff --git a/manualPorts/thunderbird/Pkgfile b/manualPorts/thunderbird/Pkgfile
index a97f19e..83cadf0 100644
--- a/manualPorts/thunderbird/Pkgfile
+++ b/manualPorts/thunderbird/Pkgfile
@@ -2,10 +2,10 @@
# URL: http://www.mozillamessaging.com/en-US/thunderbird/
# Packager: Fredrik Rinnestam, fredrik at crux dot nu
# Maintainer: Erich Eckner, crux at eckner dot net
-# Depends on: nss,autoconf-2.13,unzip,zip,libidl,gtk,gtk3,alsa-lib,xorg-libxt,yasm,hashcash,sendmailadvanced
+# Depends on: nss,autoconf-2.13,unzip,zip,libidl,gtk,gtk3,alsa-lib,xorg-libxt,yasm,rust,hashcash,sendmailadvanced
name=thunderbird
-version=52.9.1
+version=60.0
release=1
source=(http://ftp.mozilla.org/pub/thunderbird/releases/$version/source/$name-$version.source.tar.xz
$name.desktop thunderbird-install-dir.patch
@@ -13,16 +13,10 @@ source=(http://ftp.mozilla.org/pub/thunderbird/releases/$version/source/$name-$v
build() {
cd $name-$version
- sed -i '/^ftglyph.h/ i freetype/ftfntfmt.h' mozilla/config/system-headers
- patch -p1 -i $SRC/thunderbird-install-dir.patch
patch -p1 -i $SRC/hashcash.patch
- export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/$name"
- export CFLAGS="$CFLAGS -fno-delete-null-pointer-checks -fno-lifetime-dse -fno-schedule-insns2"
- export CXXFLAGS="$CXXFLAGS -fno-delete-null-pointer-checks -fno-lifetime-dse -fno-schedule-insns2"
cat <<- EOF > .mozconfig
- mk_add_options MOZ_MAKE_FLAGS="$MAKEFLAGS -s"
- ac_add_options --enable-application=mail
+ ac_add_options --enable-application=comm/mail
ac_add_options --prefix=/usr
ac_add_options --enable-default-toolkit=cairo-gtk3
ac_add_options --with-system-jpeg
@@ -30,7 +24,6 @@ cat <<- EOF > .mozconfig
ac_add_options --with-system-png
ac_add_options --with-system-nspr
ac_add_options --with-system-nss
- ac_add_options --with-system-cairo
ac_add_options --enable-system-ffi
ac_add_options --enable-system-pixman
#breaks search:
@@ -43,20 +36,22 @@ cat <<- EOF > .mozconfig
ac_add_options --disable-dbus
ac_add_options --disable-debug
ac_add_options --disable-updater
- ac_add_options --disable-gnomeui
ac_add_options --disable-crashreporter
ac_add_options --disable-necko-wifi
ac_add_options --disable-pulseaudio
ac_add_options --disable-gconf
ac_add_options --enable-calendar
+ #avoid clang dep
+ ac_add_options --disable-stylo
EOF
- make -f client.mk build
- make -f client.mk DESTDIR=$PKG install
+
+ ./mach build
+ DESTDIR=$PKG ./mach install
mkdir -p $PKG/usr/share/pixmaps
ln -s /usr/lib/thunderbird/chrome/icons/default/default48.png $PKG/usr/share/pixmaps/thunderbird_default48.png
install -D -m 0644 $SRC/$name.desktop $PKG/usr/share/applications/$name.desktop
find $PKG -iname '*README*' -delete
- rm -r $PKG/usr/{include,lib/thunderbird-devel,share/idl}
+ #rm -r $PKG/usr/{include,lib/thunderbird-devel,share/idl}
}