diff options
author | Ben Lutgens <blutgens@gentoo.org> | 2001-04-30 13:32:52 +0000 |
---|---|---|
committer | Ben Lutgens <blutgens@gentoo.org> | 2001-04-30 13:32:52 +0000 |
commit | 04ebde1b3b1f2633a81a5d32d743a4266500baaf (patch) | |
tree | e8ad2ca07fa57852c8efb50182abc57eb37d66d5 /app-misc/screen | |
parent | Added USE build,static,nls (diff) | |
download | gentoo-2-04ebde1b3b1f2633a81a5d32d743a4266500baaf.tar.gz gentoo-2-04ebde1b3b1f2633a81a5d32d743a4266500baaf.tar.bz2 gentoo-2-04ebde1b3b1f2633a81a5d32d743a4266500baaf.zip |
Achim noticed that the install for screen was not installing the binary, it
seems that the install.sh in the tarball doesn't like portage or some such.
I set it up to install everything manually, I also need to look at the DEPENDS
again, upon inspection of the makfile I see that it links -lshadow -lcrypt and
some others. As soon as I have time (tonight probably I'll fix that too)
Diffstat (limited to 'app-misc/screen')
-rw-r--r-- | app-misc/screen/screen-3.9.8.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app-misc/screen/screen-3.9.8.ebuild b/app-misc/screen/screen-3.9.8.ebuild index b0ff240808cb..31c2f9c8ee6d 100644 --- a/app-misc/screen/screen-3.9.8.ebuild +++ b/app-misc/screen/screen-3.9.8.ebuild @@ -27,7 +27,12 @@ src_compile() { src_install () { - try make DESTDIR=${D} install + dodir /usr/bin + insinto /usr/bin + dobin screen + dodir + insinto /usr/share/terminfo + doins terminfo/screencap insinto /etc doins etc/screenrc dodoc README ChangeLog INSTALL COPYING TODO |