2021-12-13 18:14:46 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPackages
|
|
|
|
, fetchurl
|
|
|
|
, which
|
|
|
|
, autoconf
|
|
|
|
, automake
|
|
|
|
, flex
|
|
|
|
, bison
|
|
|
|
, glibc
|
|
|
|
, perl
|
|
|
|
, libkrb5
|
|
|
|
, libxslt
|
|
|
|
, docbook_xsl
|
|
|
|
, file
|
|
|
|
, docbook_xml_dtd_43
|
|
|
|
, libtool_2
|
|
|
|
, withDevdoc ? false
|
|
|
|
, doxygen
|
|
|
|
, dblatex # Extra developer documentation
|
2020-10-02 10:58:46 +01:00
|
|
|
, ncurses # Extra ncurses utilities. Needed for debugging and monitoring.
|
2018-01-23 18:48:53 +00:00
|
|
|
, tsmbac ? null # Tivoli Storage Manager Backup Client from IBM
|
|
|
|
}:
|
2009-11-10 16:00:52 +00:00
|
|
|
|
2018-01-23 18:48:53 +00:00
|
|
|
with (import ./srcs.nix { inherit fetchurl; });
|
2020-10-02 10:58:46 +01:00
|
|
|
let
|
2021-01-15 07:07:56 +00:00
|
|
|
inherit (lib) optional optionalString optionals;
|
2015-09-14 19:59:37 +01:00
|
|
|
|
2021-12-13 18:14:46 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "openafs";
|
2018-01-23 18:48:53 +00:00
|
|
|
inherit version srcs;
|
2016-03-26 21:53:41 +00:00
|
|
|
|
2018-10-16 15:44:02 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2021-12-13 18:14:46 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
flex
|
|
|
|
libxslt
|
|
|
|
libtool_2
|
|
|
|
perl
|
|
|
|
which
|
|
|
|
bison
|
|
|
|
] ++ optionals withDevdoc [ doxygen dblatex ];
|
2015-01-01 16:59:27 +00:00
|
|
|
|
2021-03-14 16:11:48 +00:00
|
|
|
buildInputs = [ libkrb5 ncurses ];
|
2009-11-10 16:00:52 +00:00
|
|
|
|
2020-10-02 10:58:46 +01:00
|
|
|
patches = [ ./bosserver.patch ./cross-build.patch ] ++ optional (tsmbac != null) ./tsmbac.patch;
|
2018-01-23 18:48:53 +00:00
|
|
|
|
2020-10-02 11:12:26 +01:00
|
|
|
outputs = [ "out" "dev" "man" "doc" ] ++ optional withDevdoc "devdoc";
|
2016-02-12 02:53:54 +00:00
|
|
|
|
2020-10-02 10:58:46 +01:00
|
|
|
enableParallelBuilding = false;
|
2018-06-29 23:34:35 +01:00
|
|
|
|
|
|
|
setOutputFlags = false;
|
|
|
|
|
|
|
|
# Makefiles don't include install targets for all new shared libs, yet.
|
|
|
|
dontDisableStatic = true;
|
2009-11-10 16:00:52 +00:00
|
|
|
|
2018-06-29 23:34:35 +01:00
|
|
|
preConfigure = ''
|
2011-10-13 13:37:15 +01:00
|
|
|
patchShebangs .
|
|
|
|
for i in `grep -l -R '/usr/\(include\|src\)' .`; do
|
|
|
|
echo "Patch /usr/include and /usr/src in $i"
|
|
|
|
substituteInPlace $i \
|
2015-04-26 18:54:51 +01:00
|
|
|
--replace "/usr/include" "${glibc.dev}/include" \
|
2011-10-13 13:37:15 +01:00
|
|
|
--replace "/usr/src" "$TMP"
|
2009-11-10 16:00:52 +00:00
|
|
|
done
|
|
|
|
|
2018-01-23 18:48:53 +00:00
|
|
|
for i in ./doc/xml/{AdminGuide,QuickStartUnix,UserGuide}/*.xml; do
|
|
|
|
substituteInPlace "''${i}" --replace "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" \
|
|
|
|
"${docbook_xml_dtd_43}/xml/dtd/docbook/docbookx.dtd"
|
|
|
|
done
|
|
|
|
|
2009-11-10 16:00:52 +00:00
|
|
|
./regen.sh
|
|
|
|
|
2020-10-02 10:58:46 +01:00
|
|
|
|
2011-10-13 13:37:15 +01:00
|
|
|
configureFlagsArray=(
|
2018-06-29 23:34:35 +01:00
|
|
|
"--with-gssapi"
|
2018-01-23 18:48:53 +00:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--disable-kernel-module"
|
|
|
|
"--disable-fuse-client"
|
2020-10-02 10:58:46 +01:00
|
|
|
"--with-docbook-stylesheets=${docbook_xsl}/share/xml/docbook-xsl"
|
|
|
|
${optionalString (tsmbac != null) "--enable-tivoli-tsm"}
|
|
|
|
${optionalString (ncurses == null) "--disable-gtx"}
|
2015-08-30 04:29:55 +01:00
|
|
|
"--disable-linux-d_splice-alias-extra-iput"
|
2011-10-13 13:37:15 +01:00
|
|
|
)
|
2020-10-02 10:58:46 +01:00
|
|
|
'' + optionalString (tsmbac != null) ''
|
2018-01-23 18:48:53 +00:00
|
|
|
export XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I${tsmbac}/lib64/sample -DXBSA_TSMLIB=\\\"${tsmbac}/lib64/libApiTSM64.so\\\""
|
|
|
|
export XBSA_XLIBS="-ldl"
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildFlags = [ "all_nolibafs" ];
|
|
|
|
|
|
|
|
postBuild = ''
|
|
|
|
for d in doc/xml/{AdminGuide,QuickStartUnix,UserGuide}; do
|
2018-06-29 23:34:35 +01:00
|
|
|
make -C "''${d}" index.html
|
2018-01-23 18:48:53 +00:00
|
|
|
done
|
2020-10-02 11:12:26 +01:00
|
|
|
'' + optionalString withDevdoc ''
|
|
|
|
make dox
|
2018-01-23 18:48:53 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $doc/share/doc/openafs/{AdminGuide,QuickStartUnix,UserGuide}
|
2020-10-02 11:12:26 +01:00
|
|
|
cp -r doc/txt README LICENSE $doc/share/doc/openafs
|
2018-01-23 18:48:53 +00:00
|
|
|
for d in AdminGuide QuickStartUnix UserGuide ; do
|
|
|
|
cp "doc/xml/''${d}"/*.html "$doc/share/doc/openafs/''${d}"
|
|
|
|
done
|
|
|
|
|
2018-06-29 23:34:35 +01:00
|
|
|
rm -r $out/lib/openafs
|
2020-10-02 11:12:26 +01:00
|
|
|
'' + optionalString withDevdoc ''
|
|
|
|
mkdir -p $devdoc/share/devhelp/openafs/doxygen
|
|
|
|
cp -r doc/{pdf,protocol} $devdoc/share/devhelp/openafs
|
|
|
|
cp -r doc/doxygen/output/html $devdoc/share/devhelp/openafs/doxygen
|
2018-06-29 23:34:35 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
# Avoid references to $TMPDIR by removing it and let patchelf cleanup the
|
|
|
|
# binaries.
|
|
|
|
preFixup = ''
|
|
|
|
rm -rf "$(pwd)" && mkdir "$(pwd)"
|
2009-11-10 16:00:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-23 18:48:53 +00:00
|
|
|
outputsToInstall = [ "out" "doc" "man" ];
|
2011-10-13 13:37:15 +01:00
|
|
|
description = "Open AFS client";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.openafs.org";
|
2016-03-26 21:53:41 +00:00
|
|
|
license = licenses.ipl10;
|
|
|
|
platforms = platforms.linux;
|
2019-10-07 15:44:58 +01:00
|
|
|
maintainers = [ maintainers.maggesi maintainers.spacefrogg ];
|
2009-11-10 16:00:52 +00:00
|
|
|
};
|
|
|
|
}
|