diff options
author | Tiago Cunha <tcunha@gentoo.org> | 2009-04-22 10:36:32 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gentoo.org> | 2009-04-22 10:36:32 +0000 |
commit | 40e1e30806f54bea1e084d52e971692928ddaa1a (patch) | |
tree | 80844fd5adf1501b6c5732286a674233d4d1f034 /app-misc/tmux | |
parent | Version bump (diff) | |
download | gentoo-2-40e1e30806f54bea1e084d52e971692928ddaa1a.tar.gz gentoo-2-40e1e30806f54bea1e084d52e971692928ddaa1a.tar.bz2 gentoo-2-40e1e30806f54bea1e084d52e971692928ddaa1a.zip |
Version bump.
(Portage version: 2.1.6.7/cvs/Linux sparc64)
Diffstat (limited to 'app-misc/tmux')
-rw-r--r-- | app-misc/tmux/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/tmux/tmux-0.8.ebuild | 56 |
2 files changed, 62 insertions, 1 deletions
diff --git a/app-misc/tmux/ChangeLog b/app-misc/tmux/ChangeLog index a977ace27ca9..4174d78c89a3 100644 --- a/app-misc/tmux/ChangeLog +++ b/app-misc/tmux/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/tmux # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.12 2009/03/31 18:43:22 tcunha Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.13 2009/04/22 10:36:32 tcunha Exp $ + +*tmux-0.8 (22 Apr 2009) + + 22 Apr 2009; Tiago Cunha <tcunha@gentoo.org> +tmux-0.8.ebuild: + Version bump. 31 Mar 2009; Tiago Cunha <tcunha@gentoo.org> -tmux-0.6.ebuild: Remove old. diff --git a/app-misc/tmux/tmux-0.8.ebuild b/app-misc/tmux/tmux-0.8.ebuild new file mode 100644 index 000000000000..bc1c733190fb --- /dev/null +++ b/app-misc/tmux/tmux-0.8.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-0.8.ebuild,v 1.1 2009/04/22 10:36:32 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="vim-syntax" + +DEPEND="" +RDEPEND="vim-syntax? ( || ( + app-editors/gvim + app-editors/vim ) )" + +src_compile() { + emake CC="$(tc-getCC)" DEBUG="" FDEBUG="" || die "emake failed" +} + +src_install() { + dobin tmux || die "dobin failed" + + dodoc CHANGES FAQ NOTES TODO || die "dodoc failed" + docinto examples + dodoc examples/*.conf || die "dodoc examples failed" + + doman tmux.1 || die "doman failed" + + if use vim-syntax; then + insinto /usr/share/vim/vimfiles/syntax + doins examples/tmux.vim || die "doins syntax failed" + + insinto /usr/share/vim/vimfiles/ftdetect + doins "${FILESDIR}"/tmux.vim || die "doins ftdetect failed" + fi +} + +pkg_preinst() { + has_version "<${CATEGORY}/${PN}-0.6" + PREVIOUS_LESS_THAN_0_6=$? +} + +pkg_postinst() { + if [[ ${PREVIOUS_LESS_THAN_0_6} -eq 0 ]]; then + ewarn "The 0.6 release changed some commands and options" + ewarn "(such as: mode-keys, remain-by-default, set, setw, and" + ewarn "utf8-default), thus it will break current configurations. For" + ewarn "more information, please refer to the files located in" + ewarn "/usr/share/doc/${PF}." + fi +} |