mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
417457f6f9
fixes #13651 @edolstra: “IIRC, the "KDE integration" consists mainly in providing a Qt/KDE "File open" dialog, which we can probably live without. In fact, it has been known to malfunction if Libreoffice's KDE version is different from the system KDE version. So disabling this sounds like a good idea.”
256 lines
8.9 KiB
Nix
256 lines
8.9 KiB
Nix
{ stdenv, fetchurl, pam, python3, tcsh, libxslt, perl, ArchiveZip
|
|
, CompressZlib, zlib, libjpeg, expat, pkgconfigUpstream, freetype, libwpd
|
|
, libxml2, db, sablotron, curl, fontconfig, libsndfile, neon
|
|
, bison, flex, zip, unzip, gtk3, gtk, libmspack, getopt, file, cairo, which
|
|
, icu, boost, jdk, ant, cups, xorg, libcmis
|
|
, openssl, gperf, cppunit, GConf, ORBit2, poppler
|
|
, librsvg, gnome_vfs, mesa, bsh, CoinMP, libwps, libabw
|
|
, autoconf, automake, openldap, bash, hunspell, librdf_redland, nss, nspr
|
|
, libwpg, dbus_glib, glibc, qt4, kde4, clucene_core, libcdr, lcms, vigra
|
|
, unixODBC, mdds, sane-backends, mythes, libexttextcat, libvisio
|
|
, fontsConf, pkgconfig, libzip, bluez5, libtool, maven
|
|
, libatomic_ops, graphite2, harfbuzz, libodfgen
|
|
, librevenge, libe-book, libmwaw, glm, glew, gst_all_1
|
|
, gdb, commonsLogging, librdf_rasqal, makeWrapper, gsettings_desktop_schemas
|
|
, defaultIconTheme, glib
|
|
, langs ? [ "en-US" "en-GB" "ca" "ru" "eo" "fr" "nl" "de" "sl" "pl" ]
|
|
, withHelp ? true
|
|
, kdeIntegration ? false
|
|
}:
|
|
|
|
let
|
|
lib = stdenv.lib;
|
|
langsSpaces = lib.concatStringsSep " " langs;
|
|
major = "5";
|
|
minor = "1";
|
|
patch = "0";
|
|
tweak = "3";
|
|
subdir = "${major}.${minor}.${patch}";
|
|
version = "${subdir}${if tweak == "" then "" else "."}${tweak}";
|
|
|
|
fetchThirdParty = {name, md5, brief, subDir ? ""}: fetchurl {
|
|
inherit name md5;
|
|
url = if brief then
|
|
"http://dev-www.libreoffice.org/src/${subDir}${name}"
|
|
else
|
|
"http://dev-www.libreoffice.org/src/${subDir}${md5}-${name}";
|
|
};
|
|
|
|
fetchSrc = {name, sha256}: fetchurl {
|
|
url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${name}-${version}.tar.xz";
|
|
inherit sha256;
|
|
};
|
|
|
|
srcs = {
|
|
third_party = [ (fetchurl rec {
|
|
url = "http://dev-www.libreoffice.org/extern/${md5}-${name}";
|
|
md5 = "185d60944ea767075d27247c3162b3bc";
|
|
name = "unowinreg.dll";
|
|
}) ] ++ (map fetchThirdParty (import ./libreoffice-srcs.nix));
|
|
|
|
translations = fetchSrc {
|
|
name = "translations";
|
|
sha256 = "1qqffq7646yh7rskzd1wvy0zgkdnkpdbyhvsny424lxqjglyw3px";
|
|
};
|
|
|
|
# TODO: dictionaries
|
|
|
|
help = fetchSrc {
|
|
name = "help";
|
|
sha256 = "0ixlq6yzn6z8hsih24l934sa05vvz2vk3p03nalpqqrhm7vdzsf2";
|
|
};
|
|
|
|
};
|
|
in stdenv.mkDerivation rec {
|
|
name = "libreoffice-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz";
|
|
sha256 = "1csphxpbpc7bxrwnl5i9nvm3bh3p0j7r3h9ivsdl7cys13q066xl";
|
|
};
|
|
|
|
# Openoffice will open libcups dynamically, so we link it directly
|
|
# to make its dlopen work.
|
|
# It also seems not to mention libdl explicitly in some places.
|
|
NIX_LDFLAGS = "-lcups -ldl";
|
|
|
|
# For some reason librdf_redland sometimes refers to rasqal.h instead
|
|
# of rasqal/rasqal.h
|
|
NIX_CFLAGS_COMPILE="-I${librdf_rasqal}/include/rasqal";
|
|
|
|
# If we call 'configure', 'make' will then call configure again without parameters.
|
|
# It's their system.
|
|
configureScript = "./autogen.sh";
|
|
dontUseCmakeConfigure = true;
|
|
|
|
postUnpack = ''
|
|
mkdir -v $sourceRoot/src
|
|
'' + (stdenv.lib.concatMapStrings (f: "ln -sfv ${f} $sourceRoot/src/${f.outputHash}-${f.name}\nln -sfv ${f} $sourceRoot/src/${f.name}\n") srcs.third_party)
|
|
+ ''
|
|
ln -sv ${srcs.help} $sourceRoot/src/${srcs.help.name}
|
|
ln -svf ${srcs.translations} $sourceRoot/src/${srcs.translations.name}
|
|
'';
|
|
|
|
QT4DIR = qt4;
|
|
|
|
# Fix boost 1.59 compat
|
|
# Try removing in the next version
|
|
CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED";
|
|
|
|
preConfigure = ''
|
|
configureFlagsArray=(
|
|
"--with-parallelism=$NIX_BUILD_CORES"
|
|
"--with-lang=${langsSpaces}"
|
|
);
|
|
|
|
chmod a+x ./bin/unpack-sources
|
|
patchShebangs .
|
|
# It is used only as an indicator of the proper current directory
|
|
touch solenv/inc/target.mk
|
|
|
|
# BLFS patch for Glibc 2.23 renaming isnan
|
|
sed -ire "s@isnan@std::&@g" xmloff/source/draw/ximp3dscene.cxx
|
|
'';
|
|
|
|
# fetch_Download_item tries to interpret the name as a variable name
|
|
# Let it do so…
|
|
postConfigure = ''
|
|
sed -e '1ilibreoffice-translations-${version}.tar.xz=libreoffice-translations-${version}.tar.xz' -i Makefile
|
|
sed -e '1ilibreoffice-help-${version}.tar.xz=libreoffice-help-${version}.tar.xz' -i Makefile
|
|
|
|
# unit test sd_tiledrendering seems to be fragile
|
|
# http://nabble.documentfoundation.org/libreoffice-5-0-failure-in-CUT-libreofficekit-tiledrendering-td4150319.html
|
|
echo > ./sd/CppunitTest_sd_tiledrendering.mk
|
|
sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk
|
|
# one more fragile test?
|
|
sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx
|
|
'';
|
|
|
|
makeFlags = "SHELL=${bash}/bin/bash";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildPhase = ''
|
|
# This is required as some cppunittests require fontconfig configured
|
|
export FONTCONFIG_FILE=${fontsConf}
|
|
|
|
# This to avoid using /lib:/usr/lib at linking
|
|
sed -i '/gb_LinkTarget_LDFLAGS/{ n; /rpath-link/d;}' solenv/gbuild/platform/unxgcc.mk
|
|
|
|
find -name "*.cmd" -exec sed -i s,/lib:/usr/lib,, {} \;
|
|
|
|
make
|
|
'';
|
|
|
|
# It installs only things to $out/lib/libreoffice
|
|
postInstall = ''
|
|
mkdir -p $out/bin $out/share/desktop
|
|
|
|
mkdir -p "$out/share/gsettings-schemas/collected-for-libreoffice/glib-2.0/schemas/"
|
|
|
|
for a in sbase scalc sdraw smath swriter spadmin simpress soffice; do
|
|
ln -s $out/lib/libreoffice/program/$a $out/bin/$a
|
|
wrapProgram "$out/bin/$a" \
|
|
--prefix XDG_DATA_DIRS : \
|
|
"$out/share:$GSETTINGS_SCHEMAS_PATH" \
|
|
;
|
|
done
|
|
|
|
ln -s $out/bin/soffice $out/bin/libreoffice
|
|
ln -s $out/lib/libreoffice/share/xdg $out/share/applications
|
|
|
|
for f in $out/share/applications/*.desktop; do
|
|
substituteInPlace "$f" --replace "Exec=libreofficedev${major}.${minor}" "Exec=libreoffice"
|
|
substituteInPlace "$f" --replace "Exec=libreoffice${major}.${minor}" "Exec=libreoffice"
|
|
substituteInPlace "$f" --replace "Exec=libreoffice" "Exec=libreoffice"
|
|
done
|
|
|
|
cp -r sysui/desktop/icons "$out/share"
|
|
sed -re 's@Icon=libreofficedev[0-9.]*-?@Icon=@' -i "$out/share/applications/"*.desktop
|
|
'';
|
|
|
|
configureFlags = [
|
|
"${if withHelp then "" else "--without-help"}"
|
|
"--with-boost=${boost.dev}"
|
|
"--with-boost-libdir=${boost.lib}/lib"
|
|
"--with-beanshell-jar=${bsh}"
|
|
"--with-vendor=NixOS"
|
|
"--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar"
|
|
"--disable-report-builder"
|
|
"--enable-python=system"
|
|
"--enable-dbus"
|
|
(lib.enableFeature kdeIntegration "kde4")
|
|
"--with-package-format=installed"
|
|
"--enable-epm"
|
|
"--with-jdk-home=${jdk.home}"
|
|
"--with-ant-home=${ant}/lib/ant"
|
|
"--with-system-cairo"
|
|
"--with-system-libs"
|
|
"--with-system-headers"
|
|
"--with-system-openssl"
|
|
"--with-system-libabw"
|
|
"--with-system-libcmis"
|
|
"--with-system-libwps"
|
|
"--with-system-openldap"
|
|
"--with-system-coinmp"
|
|
|
|
# Without these, configure does not finish
|
|
"--without-junit"
|
|
|
|
# I imagine this helps. Copied from go-oo.
|
|
# Modified on every upgrade, though
|
|
"--disable-odk"
|
|
"--disable-postgresql-sdbc"
|
|
"--disable-firebird-sdbc"
|
|
"--without-fonts"
|
|
"--without-myspell-dicts"
|
|
"--without-doxygen"
|
|
|
|
# TODO: package these as system libraries
|
|
"--with-system-beanshell"
|
|
"--without-system-hsqldb"
|
|
"--without-system-altlinuxhyph"
|
|
"--without-system-lpsolve"
|
|
"--without-system-npapi-headers"
|
|
"--without-system-libetonyek"
|
|
"--without-system-libfreehand"
|
|
"--without-system-liblangtag"
|
|
"--without-system-libmspub"
|
|
"--without-system-libpagemaker"
|
|
"--without-system-libgltf"
|
|
# https://github.com/NixOS/nixpkgs/commit/5c5362427a3fa9aefccfca9e531492a8735d4e6f
|
|
"--without-system-orcus"
|
|
];
|
|
|
|
checkPhase = ''
|
|
make unitcheck
|
|
make slowcheck
|
|
'';
|
|
|
|
buildInputs = with xorg;
|
|
[ ant ArchiveZip autoconf automake bison boost cairo clucene_core
|
|
CompressZlib cppunit cups curl db dbus_glib expat file flex fontconfig
|
|
freetype GConf getopt gnome_vfs gperf gtk3 gtk
|
|
hunspell icu jdk lcms libcdr libexttextcat unixODBC libjpeg
|
|
libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11
|
|
libXaw libXext libXi libXinerama libxml2 libxslt libXtst
|
|
libXdmcp libpthreadstubs mesa mythes gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base gsettings_desktop_schemas glib
|
|
neon nspr nss openldap openssl ORBit2 pam perl pkgconfig poppler
|
|
python3 sablotron sane-backends tcsh unzip vigra which zip zlib
|
|
mdds bluez5 glibc libcmis libwps libabw
|
|
libxshmfence libatomic_ops graphite2 harfbuzz
|
|
librevenge libe-book libmwaw glm glew
|
|
libodfgen CoinMP librdf_rasqal defaultIconTheme makeWrapper
|
|
]
|
|
++ lib.optional kdeIntegration kde4.kdelibs;
|
|
|
|
meta = with lib; {
|
|
description = "Comprehensive, professional-quality productivity suite, a variant of openoffice.org";
|
|
homepage = http://libreoffice.org/;
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ viric raskin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|