# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-0.5.ebuild,v 1.1 2008/11/18 00:41:57 tcunha Exp $ inherit toolchain-funcs DESCRIPTION="Terminal multiplexer" HOMEPAGE="http://tmux.sourceforge.net" SRC_URI="mirror://sourceforge/tmux/${P}.tar.gz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" IUSE="" DEPEND="sys-libs/ncurses" RDEPEND="${DEPEND}" src_compile() { emake CC="$(tc-getCC)" DEBUG="" || die "emake failed" } src_install() { dobin tmux || die "dobin failed" dodoc NOTES TODO || die "dodoc failed" docinto examples dodoc examples/*.conf || die "dodoc examples failed" doman tmux.1 || die "doman failed" }