gogui: 1.4.9 -> 1.5.3 (#240190)
gogui on sourceforce has been abandoned for about 7 years. This PR migrates to the fork on github that seems to be actively maintained. This also migrates from a binary distribution to building the program from source, which is why there are a lot of changes.
This commit is contained in:
parent
5257e4d442
commit
82a4b569ea
1 changed files with 81 additions and 15 deletions
|
@ -1,28 +1,94 @@
|
|||
{ fetchurl, lib, stdenv, openjdk, unzip, makeWrapper }:
|
||||
{ ant
|
||||
, docbook-xsl-ns
|
||||
, docbook_xml_dtd_42
|
||||
, fetchFromGitHub
|
||||
, imagemagick
|
||||
, lib
|
||||
, libxslt
|
||||
, makeWrapper
|
||||
, openjdk
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.4.9";
|
||||
version = "1.5.3";
|
||||
in stdenv.mkDerivation {
|
||||
pname = "gogui";
|
||||
inherit version;
|
||||
nativeBuildInputs = [ makeWrapper unzip ];
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/gogui/gogui/${version}/gogui-${version}.zip";
|
||||
sha256 = "0qk6p1bhi1816n638bg11ljyj6zxvm75jdf02aabzdmmd9slns1j";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Remi-Coulom";
|
||||
repo = "gogui";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-GezFhNYB542JnAIUeUVa188+SR5mCedwj0hZN8L83UQ=";
|
||||
};
|
||||
dontConfigure = true;
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/doc
|
||||
mv -vi {bin,lib} $out/
|
||||
mv -vi doc $out/share/doc/gogui
|
||||
for x in $out/bin/*; do
|
||||
wrapProgram $x --prefix PATH ":" ${openjdk}/bin
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
ant
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
docbook-xsl-ns
|
||||
imagemagick
|
||||
libxslt
|
||||
openjdk
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
|
||||
substituteInPlace doc/manual/xml/book.xml \
|
||||
--replace http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd \
|
||||
${docbook_xml_dtd_42}/xml/dtd/docbook/docbookx.dtd
|
||||
substituteInPlace doc/manual/xml/manpages.xml \
|
||||
--replace http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd \
|
||||
${docbook_xml_dtd_42}/xml/dtd/docbook/docbookx.dtd
|
||||
|
||||
# generate required gui images from svg
|
||||
# see https://github.com/Remi-Coulom/gogui/issues/36
|
||||
sizes=( 16x16 24x24 32x32 48x48 64x64 )
|
||||
for i in src/net/sf/gogui/images/*.svg; do
|
||||
for j in ''${sizes[@]}; do
|
||||
convert $i -resize $j src/net/sf/gogui/images/$(basename $i .svg)-''${j}.png
|
||||
done
|
||||
done
|
||||
|
||||
for i in src/net/sf/gogui/images/gogui-{black,white,setup}.svg; do
|
||||
convert $i -resize 8x8 src/net/sf/gogui/images/$(basename $i .svg)-8x8.png
|
||||
done
|
||||
|
||||
ant -Ddocbook-xsl.dir=${docbook-xsl-ns}/xml/xsl/docbook
|
||||
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
# copy documentation
|
||||
mkdir -p $out/share/doc
|
||||
mv -vi doc $out/share/doc/gogui
|
||||
|
||||
# make man pages available
|
||||
mkdir -p $out/share/man/
|
||||
ln -s $out/share/doc/gogui/manual/man $out/share/man/man1
|
||||
|
||||
# copy programs
|
||||
mv -vi {bin,lib} $out/
|
||||
|
||||
# wrap programs
|
||||
for x in $out/bin/*; do
|
||||
wrapProgram $x --prefix PATH ":" ${openjdk}/bin --set GOGUI_JAVA_HOME ${openjdk}
|
||||
done
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
maintainers = [ lib.maintainers.cleverca22 ];
|
||||
maintainers = [ lib.maintainers.cleverca22 lib.maintainers.omnipotententity];
|
||||
description = "A graphical user interface to programs that play the board game Go and support the Go Text Protocol such as GNU Go";
|
||||
homepage = "https://gogui.sourceforge.net/";
|
||||
homepage = "https://github.com/Remi-Coulom/gogui";
|
||||
platforms = lib.platforms.unix;
|
||||
license = lib.licenses.gpl3;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue