Merge pull request #136637 from L-as/alliance
alliance: 5.1.1 -> unstable-2020-12-04
This commit is contained in:
commit
715d551a10
@ -1,74 +1,54 @@
|
|||||||
{ lib, stdenv, fetchurl
|
{ lib, stdenv, fetchFromGitLab, xorgproto, motif, libX11, libXt, libXpm, bison
|
||||||
, xorgproto, motif, libX11, libXt, libXpm, bison
|
, flex, automake, autoconf, libtool
|
||||||
, flex, automake, autoconf, libtool, runtimeShell
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "alliance";
|
pname = "alliance";
|
||||||
version = "5.1.1";
|
version = "unstable-2021-09-15";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitLab {
|
||||||
url = "http://www-asim.lip6.fr/pub/alliance/distribution/5.0/${pname}-${version}.tar.bz2";
|
domain = "gitlab.lip6.fr";
|
||||||
sha256 = "046c9qwl1vbww0ljm4xyxf5jpz9nq62b2q0wdz9xjimgh4c207w1";
|
owner = "vlsi-eda";
|
||||||
|
repo = "alliance";
|
||||||
|
rev = "5e83c92d0307cce9d599f7099fb0023f81d26d65";
|
||||||
|
sha256 = "Vd3MTT4eKn4FMt0/F4fQUPcWq25kH0FpeGxQUOetKPY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
prePatch = "cd alliance/src";
|
||||||
|
|
||||||
nativeBuildInputs = [ libtool automake autoconf flex ];
|
nativeBuildInputs = [ libtool automake autoconf flex ];
|
||||||
buildInputs = [ xorgproto motif libX11 libXt libXpm bison ];
|
buildInputs = [ xorgproto motif libX11 libXt libXpm bison ];
|
||||||
|
|
||||||
sourceRoot = "alliance/src/";
|
ALLIANCE_TOP = placeholder "out";
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--prefix=$(out)"
|
"--prefix=${placeholder "out"}" "--enable-alc-shared"
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
postPatch = ''
|
||||||
mkdir -p $out/etc
|
# texlive for docs seems extreme
|
||||||
|
|
||||||
#texlive for docs seems extreme
|
|
||||||
mkdir -p $out/share/alliance
|
|
||||||
mv ./documentation $out/share/alliance
|
|
||||||
substituteInPlace autostuff \
|
substituteInPlace autostuff \
|
||||||
--replace "$newdirs documentation" "$newdirs" \
|
--replace "$newdirs documentation" "$newdirs"
|
||||||
--replace documentation Solaris
|
|
||||||
|
substituteInPlace sea/src/DEF_grammar_lex.l --replace "ifndef FLEX_BETA" \
|
||||||
|
"if (YY_FLEX_MAJOR_VERSION <= 2) && (YY_FLEX_MINOR_VERSION < 6)"
|
||||||
|
|
||||||
substituteInPlace sea/src/DEF_grammar_lex.l \
|
|
||||||
--replace "ifndef FLEX_BETA" "if (YY_FLEX_MAJOR_VERSION <= 2) && (YY_FLEX_MINOR_VERSION < 6)"
|
|
||||||
./autostuff
|
./autostuff
|
||||||
'';
|
'';
|
||||||
|
|
||||||
allianceInstaller = ''
|
|
||||||
#!${runtimeShell}
|
|
||||||
cp -v -r -n --no-preserve=mode $out/etc/* /etc/ > /etc/alliance-install.log
|
|
||||||
'';
|
|
||||||
|
|
||||||
allianceUnInstaller = ''
|
|
||||||
#!${runtimeShell}
|
|
||||||
awk '{print \$3}' /etc/alliance-install.log | xargs rm
|
|
||||||
awk '{print \$3}' /etc/alliance-install.log | xargs rmdir
|
|
||||||
rm /etc/alliance-install.log
|
|
||||||
'';
|
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
sed -i "s|ALLIANCE_TOP|$out|" distrib/*.desktop
|
sed -i "s|ALLIANCE_TOP|$out|" distrib/*.desktop
|
||||||
mkdir -p $out/share/applications
|
mkdir -p $out/share/applications
|
||||||
cp -p distrib/*.desktop $out/share/applications/
|
cp -p distrib/*.desktop $out/share/applications/
|
||||||
mkdir -p $out/icons/hicolor/48x48/apps/
|
mkdir -p $out/icons/hicolor/48x48/apps/
|
||||||
cp -p distrib/*.png $out/icons/hicolor/48x48/apps/
|
cp -p distrib/*.png $out/icons/hicolor/48x48/apps/
|
||||||
|
|
||||||
echo "${allianceInstaller}" > $out/bin/alliance-install
|
|
||||||
chmod +x $out/bin/alliance-install
|
|
||||||
|
|
||||||
echo "${allianceUnInstaller}" > $out/bin/alliance-uninstall
|
|
||||||
chmod +x $out/bin/alliance-uninstall
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Complete set of free CAD tools and portable libraries for VLSI design";
|
description = "(deprecated) Complete set of free CAD tools and portable libraries for VLSI design";
|
||||||
homepage = "http://www-asim.lip6.fr/recherche/alliance/";
|
homepage = "http://coriolis.lip6.fr/";
|
||||||
license = with licenses; gpl2Plus;
|
license = with licenses; gpl2Plus;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ l-as ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user