nixpkgs/pkgs/tools/admin/tightvnc/builder.sh
Peter Simons d46e80976c pkgs/tools/admin/tightvnc: move --mandir and --infodir to standard locations
svn path=/nixpkgs/trunk/; revision=25013
2010-12-06 18:01:51 +00:00

46 lines
1 KiB
Bash

source $stdenv/setup
patchPhase() {
fontPath=
for i in $fontDirectories; do
for j in $(find $i -name fonts.dir); do
addToSearchPathWithCustomDelimiter "," fontPath $(dirname $j)
done
done
}
buildPhase() {
xmkmf
make World
sed -e 's@/usr/bin/perl@'$perl'/bin/perl@' \
-e 's@unix/:7100@'$fontPath'@' \
-i vncserver
cd Xvnc
sed -e 's@.* CppCmd .*@#define CppCmd '$gcc'/bin/cpp@' -i config/cf/linux.cf
sed -e 's@.* CppCmd .*@#define CppCmd '$gcc'/bin/cpp@' -i config/cf/Imake.tmpl
sed -i \
-e 's@"uname","xauth","Xvnc","vncpasswd"@"uname","Xvnc","vncpasswd"@g' \
-e "s@\<xauth\>@$xauth/bin/xauth@g" \
../vncserver
./configure
make
cd ..
}
installPhase() {
ensureDir $out/bin
ensureDir $out/share/man/man1
./vncinstall $out/bin $out/share/man
# fix HTTP client:
t=$out/share/tightvnc
ensureDir $t
sed -i "s@/usr/local/vnc/classes@$out/vnc/classes@g" $out/bin/vncserver
cp -r classes $t
}
genericBuild