2019-11-06 22:02:22 +00:00
|
|
|
{ stdenv, lib, fetchurl, libiconv, xz }:
|
2009-04-22 00:18:09 +01:00
|
|
|
|
2016-02-21 13:22:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gettext";
|
2019-11-06 22:02:22 +00:00
|
|
|
version = "0.20.1";
|
2013-09-23 10:14:42 +01:00
|
|
|
|
2008-02-22 03:06:12 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnu/gettext/${pname}-${version}.tar.gz";
|
2019-11-06 22:02:22 +00:00
|
|
|
sha256 = "0p3zwkk27wm2m2ccfqm57nj7vqkmfpn7ja1nf65zmhz8qqs5chb6";
|
2008-02-22 03:06:12 +00:00
|
|
|
};
|
2019-04-05 20:03:59 +01:00
|
|
|
patches = [
|
|
|
|
./absolute-paths.diff
|
2019-11-13 12:58:14 +00:00
|
|
|
./gettext.git-2336451ed68d91ff4b5ae1acbc1eca30e47a86a9.patch
|
2019-04-05 20:03:59 +01:00
|
|
|
];
|
2009-09-19 12:04:33 +01:00
|
|
|
|
2017-07-11 10:14:14 +01:00
|
|
|
outputs = [ "out" "man" "doc" "info" ];
|
2015-07-26 23:25:53 +01:00
|
|
|
|
2017-09-15 10:04:14 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2013-02-23 13:59:59 +00:00
|
|
|
LDFLAGS = if stdenv.isSunOS then "-lm -lmd -lmp -luutil -lnvpair -lnsl -lidmap -lavl -lsec" else "";
|
2013-02-20 09:20:07 +00:00
|
|
|
|
2018-05-13 16:31:24 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-csharp" "--with-xz"
|
|
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
# On cross building, gettext supposes that the wchar.h from libc
|
|
|
|
# does not fulfill gettext needs, so it tries to work with its
|
|
|
|
# own wchar.h file, which does not cope well with the system's
|
|
|
|
# wchar.h and stddef.h (gcc-4.3 - glibc-2.9)
|
|
|
|
"gl_cv_func_wcwidth_works=yes"
|
|
|
|
];
|
2009-09-19 12:04:33 +01:00
|
|
|
|
2016-02-17 17:16:20 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteAllInPlace gettext-runtime/src/gettext.sh.in
|
2015-12-13 14:07:10 +00:00
|
|
|
substituteInPlace gettext-tools/projects/KDE/trigger --replace "/bin/pwd" pwd
|
|
|
|
substituteInPlace gettext-tools/projects/GNOME/trigger --replace "/bin/pwd" pwd
|
|
|
|
substituteInPlace gettext-tools/src/project-id --replace "/bin/pwd" pwd
|
2018-08-20 19:43:41 +01:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isCygwin ''
|
2017-05-23 14:36:46 +01:00
|
|
|
sed -i -e "s/\(cldr_plurals_LDADD = \)/\\1..\/gnulib-lib\/libxml_rpl.la /" gettext-tools/src/Makefile.in
|
|
|
|
sed -i -e "s/\(libgettextsrc_la_LDFLAGS = \)/\\1..\/gnulib-lib\/libxml_rpl.la /" gettext-tools/src/Makefile.in
|
2015-12-13 14:07:10 +00:00
|
|
|
'';
|
|
|
|
|
2019-04-15 06:09:44 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
xz
|
|
|
|
xz.bin
|
|
|
|
];
|
2017-08-30 21:46:25 +01:00
|
|
|
# HACK, see #10874 (and 14664)
|
2018-08-20 19:43:41 +01:00
|
|
|
buildInputs = stdenv.lib.optional (!stdenv.isLinux && !stdenv.hostPlatform.isCygwin) libiconv;
|
2013-09-23 10:14:42 +01:00
|
|
|
|
2018-05-07 18:07:19 +01:00
|
|
|
setupHooks = [
|
|
|
|
../../../build-support/setup-hooks/role.bash
|
|
|
|
./gettext-setup-hook.sh
|
|
|
|
];
|
2018-08-20 19:43:41 +01:00
|
|
|
gettextNeedsLdflags = stdenv.hostPlatform.libc != "glibc" && !stdenv.hostPlatform.isMusl;
|
2017-12-04 04:30:45 +00:00
|
|
|
|
2011-12-14 13:37:17 +00:00
|
|
|
enableParallelBuilding = true;
|
2018-09-05 02:12:48 +01:00
|
|
|
enableParallelChecking = false; # fails sometimes
|
2013-09-23 10:14:42 +01:00
|
|
|
|
2018-08-20 18:50:39 +01:00
|
|
|
meta = with lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Well integrated set of translation tools and documentation";
|
2009-09-19 12:04:33 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Usually, programs are written and documented in English, and use
|
|
|
|
English at execution time for interacting with users. Using a common
|
|
|
|
language is quite handy for communication between developers,
|
|
|
|
maintainers and users from all countries. On the other hand, most
|
|
|
|
people are less comfortable with English than with their own native
|
|
|
|
language, and would rather be using their mother tongue for day to
|
|
|
|
day's work, as far as possible. Many would simply love seeing their
|
|
|
|
computer screen showing a lot less of English, and far more of their
|
|
|
|
own language.
|
|
|
|
|
|
|
|
GNU `gettext' is an important step for the GNU Translation Project, as
|
|
|
|
it is an asset on which we may build many other steps. This package
|
|
|
|
offers to programmers, translators, and even users, a well integrated
|
|
|
|
set of tools and documentation. Specifically, the GNU `gettext'
|
|
|
|
utilities are a set of tools that provides a framework to help other
|
|
|
|
GNU packages produce multi-lingual messages.
|
|
|
|
'';
|
|
|
|
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/gettext/;
|
2009-09-19 12:04:33 +01:00
|
|
|
|
2018-08-20 18:50:39 +01:00
|
|
|
maintainers = with maintainers; [ zimbatm vrthra ];
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.all;
|
2009-09-19 12:04:33 +01:00
|
|
|
};
|
2008-02-22 03:06:12 +00:00
|
|
|
}
|
2012-05-29 11:13:23 +01:00
|
|
|
|
2013-09-23 10:14:27 +01:00
|
|
|
// stdenv.lib.optionalAttrs stdenv.isDarwin {
|
2013-09-14 13:56:10 +01:00
|
|
|
makeFlags = "CFLAGS=-D_FORTIFY_SOURCE=0";
|
|
|
|
}
|