2006-07-13 16:54:24 +02:00
|
|
|
source $stdenv/setup
|
|
|
|
|
2009-05-17 01:04:06 +02:00
|
|
|
patchPhase() {
|
|
|
|
fontPath=
|
|
|
|
for i in $fontDirectories; do
|
|
|
|
for j in $(find $i -name fonts.dir); do
|
|
|
|
addToSearchPathWithCustomDelimiter "," fontPath $(dirname $j)
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2006-07-13 16:54:24 +02:00
|
|
|
buildPhase() {
|
2009-05-17 01:04:06 +02:00
|
|
|
|
|
|
|
xmkmf
|
|
|
|
make World
|
|
|
|
|
|
|
|
sed -e 's@/usr/bin/perl@'$perl'/bin/perl@' \
|
|
|
|
-e 's@unix/:7100@'$fontPath'@' \
|
|
|
|
-i vncserver
|
2007-10-04 20:49:04 +02:00
|
|
|
|
|
|
|
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
|
2007-11-05 10:17:05 +01:00
|
|
|
sed -i \
|
|
|
|
-e 's@"uname","xauth","Xvnc","vncpasswd"@"uname","Xvnc","vncpasswd"@g' \
|
|
|
|
-e "s@\<xauth\>@$xauth/bin/xauth@g" \
|
|
|
|
../vncserver
|
2007-10-04 20:49:04 +02:00
|
|
|
./configure
|
|
|
|
make
|
|
|
|
cd ..
|
2006-07-13 16:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
installPhase() {
|
|
|
|
ensureDir $out/bin
|
|
|
|
ensureDir $out/man/man1
|
|
|
|
./vncinstall $out/bin $out/man
|
2010-03-13 07:07:24 +01:00
|
|
|
|
|
|
|
# fix HTTP client:
|
|
|
|
t=$out/vnc
|
|
|
|
ensureDir $t
|
|
|
|
sed -i "s@/usr/local/vnc/classes@$out/vnc/classes@g" $out/bin/vncserver
|
|
|
|
cp -r classes $t
|
2006-07-13 16:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
genericBuild
|