summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2011-08-07 17:17:59 +0000
committerJeroen Roovers <jer@gentoo.org>2011-08-07 17:17:59 +0000
commita4ed9da157a13f28984400fd3d7999055676d113 (patch)
tree1a2f082bed5f0f25a1a21b5818922794281e0694
parentDrop sparc keyword (diff)
downloadgentoo-2-a4ed9da157a13f28984400fd3d7999055676d113.tar.gz
gentoo-2-a4ed9da157a13f28984400fd3d7999055676d113.tar.bz2
gentoo-2-a4ed9da157a13f28984400fd3d7999055676d113.zip
Remove old ebuilds so that libevent-1 can be removed.
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
-rw-r--r--app-misc/tmux/ChangeLog6
-rw-r--r--app-misc/tmux/files/tmux-1.2-locale.patch22
-rw-r--r--app-misc/tmux/tmux-1.2.ebuild52
-rw-r--r--app-misc/tmux/tmux-1.3.ebuild67
4 files changed, 5 insertions, 142 deletions
diff --git a/app-misc/tmux/ChangeLog b/app-misc/tmux/ChangeLog
index eebf81d63a3a..56e466751057 100644
--- a/app-misc/tmux/ChangeLog
+++ b/app-misc/tmux/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/tmux
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.65 2011/07/30 11:58:51 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.66 2011/08/07 17:17:58 jer Exp $
+
+ 07 Aug 2011; Jeroen Roovers <jer@gentoo.org> -tmux-1.2.ebuild,
+ -files/tmux-1.2-locale.patch, -tmux-1.3.ebuild:
+ Remove old ebuilds so that libevent-1 can be removed.
30 Jul 2011; Fabian Groffen <grobian@gentoo.org> tmux-1.5.ebuild,
+files/tmux-1.5-darwin.patch, tmux-9999.ebuild:
diff --git a/app-misc/tmux/files/tmux-1.2-locale.patch b/app-misc/tmux/files/tmux-1.2-locale.patch
deleted file mode 100644
index 810b10cef7a4..000000000000
--- a/app-misc/tmux/files/tmux-1.2-locale.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- tmux-1.2/GNUmakefile
-+++ tmux-1.2/GNUmakefile
-@@ -56,7 +56,7 @@
- INSTALLBIN= install -g bin -o root -m 555
- INSTALLMAN= install -g bin -o root -m 444
-
--SRCS= $(shell echo *.c|sed 's|osdep-[a-z0-9]*.c||g')
-+SRCS= $(shell echo *.c|LC_ALL=C sed 's|osdep-[a-z0-9]*.c||g')
- include config.mk
- OBJS= $(patsubst %.c,%.o,$(SRCS))
-
---- tmux-1.2/Makefile
-+++ tmux-1.2/Makefile
-@@ -52,7 +52,7 @@
- INSTALLBIN= install -g bin -o root -m 555
- INSTALLMAN= install -g bin -o root -m 444
-
--SRCS!= echo *.c|sed 's|osdep-[a-z0-9]*.c||g'
-+SRCS!= echo *.c|LC_ALL=C sed 's|osdep-[a-z0-9]*.c||g'
- .include "config.mk"
- OBJS= ${SRCS:S/.c/.o/}
-
diff --git a/app-misc/tmux/tmux-1.2.ebuild b/app-misc/tmux/tmux-1.2.ebuild
deleted file mode 100644
index 82c050fc4199..000000000000
--- a/app-misc/tmux/tmux-1.2.ebuild
+++ /dev/null
@@ -1,52 +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.2.ebuild,v 1.12 2011/01/07 14:06:29 jlec Exp $
-
-inherit eutils 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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="vim-syntax"
-
-DEPEND="
- <dev-libs/libevent-2
- sys-libs/ncurses"
-RDEPEND="${DEPEND}
- vim-syntax? ( || (
- app-editors/vim
- app-editors/gvim ) )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-locale.patch
-}
-
-src_compile() {
- # The configure script isn't created by GNU autotools.
- ./configure || die "configure failed"
- 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
-}
diff --git a/app-misc/tmux/tmux-1.3.ebuild b/app-misc/tmux/tmux-1.3.ebuild
deleted file mode 100644
index 375f7921c9e9..000000000000
--- a/app-misc/tmux/tmux-1.3.ebuild
+++ /dev/null
@@ -1,67 +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.3.ebuild,v 1.9 2011/07/02 20:00:20 nixnut 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 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="vim-syntax"
-
-DEPEND="
- <dev-libs/libevent-2
- sys-libs/ncurses"
-RDEPEND="${DEPEND}
- vim-syntax? ( || (
- app-editors/vim
- app-editors/gvim ) )"
-
-pkg_setup() {
- 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 1.3 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 tmux 1.3 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
-}
-
-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
-}