0de5cbedef
svn path=/nixpkgs/trunk/; revision=9406
25 lines
487 B
Bash
25 lines
487 B
Bash
source $stdenv/setup
|
|
|
|
buildPhase=buildPhase
|
|
buildPhase() {
|
|
xmkmf
|
|
make World
|
|
sed -e 's@/usr/bin/perl@'$perl'/bin/perl@' -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
|
|
./configure
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
installPhase=installPhase
|
|
installPhase() {
|
|
ensureDir $out/bin
|
|
ensureDir $out/man/man1
|
|
./vncinstall $out/bin $out/man
|
|
}
|
|
|
|
genericBuild
|