summaryrefslogtreecommitdiff
path: root/manualPorts/thunderbird/Pkgfile
blob: befea365e00580d8c89dfa1c5a3c297d9c596d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Description: email client from the Mozilla project with stampig-patch
# 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

name=thunderbird
version=52.8.0
release=1
source=(http://ftp.mozilla.org/pub/thunderbird/releases/$version/source/$name-$version.source.tar.xz
	$name.desktop thunderbird-install-dir.patch
	hashcash.patch)
 
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 --prefix=/usr
    ac_add_options --enable-default-toolkit=cairo-gtk3
    ac_add_options --with-system-jpeg
    ac_add_options --with-system-zlib
    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:
    #ac_add_options --enable-system-sqlite
    ac_add_options --enable-alsa
    ac_add_options --with-pthreads
    ac_add_options --enable-official-branding
    ac_add_options --with-distribution-id=nu.crux
    ac_add_options --disable-tests
    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
EOF
    make -f client.mk build
    make -f client.mk DESTDIR=$PKG 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}
}