diff options
author | Tiago Cunha <tcunha@gentoo.org> | 2009-07-07 00:08:50 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gentoo.org> | 2009-07-07 00:08:50 +0000 |
commit | da568e1997a5983202d1568c4a97cbd3755b1423 (patch) | |
tree | dbb143b205cfeac4e3a9fd014a317c126a009c1d /app-misc/tmux | |
parent | Just be clear where it fails, if it fails. (diff) | |
download | gentoo-2-da568e1997a5983202d1568c4a97cbd3755b1423.tar.gz gentoo-2-da568e1997a5983202d1568c4a97cbd3755b1423.tar.bz2 gentoo-2-da568e1997a5983202d1568c4a97cbd3755b1423.zip |
- Version bump.
- Remove old.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/tmux')
-rw-r--r-- | app-misc/tmux/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/tmux/tmux-0.9.ebuild (renamed from app-misc/tmux/tmux-0.7.ebuild) | 8 |
2 files changed, 13 insertions, 4 deletions
diff --git a/app-misc/tmux/ChangeLog b/app-misc/tmux/ChangeLog index 9694c5a5ebdd..de7fb63401c2 100644 --- a/app-misc/tmux/ChangeLog +++ b/app-misc/tmux/ChangeLog @@ -1,6 +1,13 @@ # 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.17 2009/06/24 20:33:09 tcunha Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.18 2009/07/07 00:08:50 tcunha Exp $ + +*tmux-0.9 (07 Jul 2009) + + 07 Jul 2009; Tiago Cunha <tcunha@gentoo.org> -tmux-0.7.ebuild, + +tmux-0.9.ebuild: + - Version bump. + - Remove old. 24 Jun 2009; Tiago Cunha <tcunha@gentoo.org> tmux-0.8.ebuild: stable sparc, bug 270890 diff --git a/app-misc/tmux/tmux-0.7.ebuild b/app-misc/tmux/tmux-0.9.ebuild index 6cf64de170a8..7949ed4a0af0 100644 --- a/app-misc/tmux/tmux-0.7.ebuild +++ b/app-misc/tmux/tmux-0.9.ebuild @@ -1,6 +1,6 @@ # 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.7.ebuild,v 1.5 2009/03/18 18:36:17 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-0.9.ebuild,v 1.1 2009/07/07 00:08:50 tcunha Exp $ inherit toolchain-funcs @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/tmux/${P}.tar.gz" LICENSE="ISC" SLOT="0" -KEYWORDS="amd64 ppc sparc x86" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" IUSE="vim-syntax" DEPEND="" @@ -19,7 +19,9 @@ RDEPEND="vim-syntax? ( || ( app-editors/vim ) )" src_compile() { - emake CC="$(tc-getCC)" DEBUG="" FDEBUG="" || die "emake failed" + # The configure script isn't created by GNU autotools. + ./configure || die "configure failed" + emake CC="$(tc-getCC)" FDEBUG="" || die "emake failed" } src_install() { |