--- tmux-1.2.ebuild	2010-07-02 05:35:27.000000000 -0700
+++ tmux-1.3.ebuild	2010-07-22 20:39:10.345326259 -0700
@@ -1,8 +1,8 @@
 # Copyright 1999-2010 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.9 2010/07/02 12:22:11 grobian Exp $
+# $Header: $
 
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="Terminal multiplexer"
 HOMEPAGE="http://tmux.sourceforge.net"
@@ -10,21 +10,15 @@
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="vim-syntax"
 
 DEPEND="dev-libs/libevent
 	sys-libs/ncurses"
 RDEPEND="${DEPEND}
 	vim-syntax? ( || (
-			app-editors/vim
-			app-editors/gvim ) )"
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	epatch "${FILESDIR}"/${P}-locale.patch
-}
+		app-editors/vim
+		app-editors/gvim ) )"
 
 src_compile() {
 	# The configure script isn't created by GNU autotools.
@@ -49,18 +43,3 @@
 		doins "${FILESDIR}"/tmux.vim || die "doins ftdetect failed"
 	fi
 }
-
-pkg_preinst() {
-	has_version "<${CATEGORY}/${PN}-1.1"
-	PREVIOUS_LESS_THAN_1_1=$?
-}
-
-pkg_postinst() {
-	if [[ ${PREVIOUS_LESS_THAN_1_1} -eq 0 ]]; then
-		ewarn "The 1.1 release replaced the internal locking mechanism"
-		ewarn "by executing a shell command (such as app-misc/vlock),"
-		ewarn "thus the set-password command, and the -U command line"
-		ewarn "flag were removed, as well as -d, since tmux will now"
-		ewarn "automatically detect default colours."
-	fi
-}