summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2012-02-12 19:33:23 +0000
committerJustin Lecher <jlec@gentoo.org>2012-02-12 19:33:23 +0000
commita14257b2cffe75a0993179d73aee3cc57afac49b (patch)
tree7d03fa7e6fc5daa644d20328a9b6237456d18a95 /app-misc/tmux
parentSync patches with upstream, and drop custom `inputattach` addition #281456. (diff)
downloadgentoo-2-a14257b2cffe75a0993179d73aee3cc57afac49b.tar.gz
gentoo-2-a14257b2cffe75a0993179d73aee3cc57afac49b.tar.bz2
gentoo-2-a14257b2cffe75a0993179d73aee3cc57afac49b.zip
Drop old
(Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/tmux')
-rw-r--r--app-misc/tmux/ChangeLog5
-rw-r--r--app-misc/tmux/tmux-1.4.ebuild69
2 files changed, 4 insertions, 70 deletions
diff --git a/app-misc/tmux/ChangeLog b/app-misc/tmux/ChangeLog
index 86ad1bc9e597..9ccd99934613 100644
--- a/app-misc/tmux/ChangeLog
+++ b/app-misc/tmux/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/tmux
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.71 2012/02/11 16:01:02 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.72 2012/02/12 19:33:23 jlec Exp $
+
+ 12 Feb 2012; Justin Lecher <jlec@gentoo.org> -tmux-1.4.ebuild:
+ Drop old
11 Feb 2012; nixnut <nixnut@gentoo.org> tmux-1.5.ebuild:
ppc stable #380689
diff --git a/app-misc/tmux/tmux-1.4.ebuild b/app-misc/tmux/tmux-1.4.ebuild
deleted file mode 100644
index b2f42702c17e..000000000000
--- a/app-misc/tmux/tmux-1.4.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-1.4.ebuild,v 1.8 2011/11/06 19:09:19 armin76 Exp $
-
-EAPI=3
-
-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 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="vim-syntax"
-
-DEPEND="
- || ( >=dev-libs/libevent-2.0.10 <dev-libs/libevent-2 )
- sys-libs/ncurses"
-RDEPEND="${DEPEND}
- vim-syntax? ( || (
- app-editors/vim
- app-editors/gvim ) )"
-
-pkg_setup() {
- if has_version "<app-misc/tmux-1.3"; then
- echo
- ewarn "Commands 'up-pane', 'down-pane' and 'select-prompt' were removed in version 1.3."
- ewarn "You may want to update your configuration file accordingly to avoid errors on"
- ewarn "tmux startup."
- ewarn
- ewarn "For the full Changelog, together with details on what replaced the above"
- ewarn "commands, visit http://tmux.cvs.sourceforge.net/viewvc/tmux/tmux/CHANGES."
- ewarn
- ewarn "WARNING: after updating to ${P} you will _not_ be able to connect to any"
- ewarn "running 1.2 tmux server instances. You'll have to use an existing client to"
- ewarn "end your old sessions or kill the old server instances. Otherwise you'll have"
- ewarn "to temporarily downgrade to tmux 1.2 to access them."
- echo
- fi
-}
-
-src_configure() {
- # The configure script isn't created by GNU autotools.
- ./configure || die "configure failed"
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" || 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
-}