Just a quick post here. I recently recompiled screen with vertical split support on Ubuntu 8.04. Here’s how you do it:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Install dependencies to build screen sudo apt-get build-dep screen # Create an area to hold the source cd ~/debian-src mkdir screen cd screen # Get the source apt-get source screen # Apply vertical split patch cd screen-4.0.3/ wget http://vsp4sdl.yuggoth.org/wrp_vertical_split_0.3_4.0.2.diff.bz2 bunzip2 wrp_vertical_split_0.3_4.0.2.diff.bz2 patch -p1 < wrp_vertical_split_0.3_4.0.2.diff # Build it! dpkg-buildpackage -us -uc -rfakeroot cd .. # Install it! sudo dpkg -i screen_4.0.3-0.4ubuntu2_amd64.deb |
That’s it.

Is there something unreliable about “apt-get build-dep screen”? I haven’t had any issues with using the build-dep command when compiling software, but it seems most blog posts on compiling package XYZ for debian/ubuntu don’t use it.