Gentoo Archives: gentoo-commits

From: "Alex Alexander (wired)" <wired@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/tmux: ChangeLog tmux-9999.ebuild
Date: Thu, 28 Oct 2010 20:55:45
Message-Id: 20101028205542.711A820051@flycatcher.gentoo.org
1 wired 10/10/28 20:55:42
2
3 Modified: ChangeLog
4 Added: tmux-9999.ebuild
5 Log:
6 added live ebuild, bug #342949
7
8 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.53 app-misc/tmux/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 10 Oct 2010 17:50:23 -0000 1.52
24 +++ ChangeLog 28 Oct 2010 20:55:42 -0000 1.53
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-misc/tmux
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.52 2010/10/10 17:50:23 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.53 2010/10/28 20:55:42 wired Exp $
30 +
31 +*tmux-9999 (28 Oct 2010)
32 +
33 + 28 Oct 2010; Alex Alexander <wired@g.o> +tmux-9999.ebuild:
34 + added live ebuild, bug #342949
35
36 10 Oct 2010; Raúl Porcel <armin76@g.o> tmux-1.3.ebuild:
37 sparc stable wrt #336309
38
39
40
41 1.1 app-misc/tmux/tmux-9999.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/tmux-9999.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/tmux-9999.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tmux-9999.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-9999.ebuild,v 1.1 2010/10/28 20:55:42 wired Exp $
51
52 EAPI=3
53
54 ECVS_SERVER="tmux.cvs.sourceforge.net:/cvsroot/tmux"
55 ECVS_MODULE="tmux"
56
57 inherit cvs toolchain-funcs
58
59 DESCRIPTION="Terminal multiplexer"
60 HOMEPAGE="http://tmux.sourceforge.net"
61 SRC_URI=""
62
63 LICENSE="ISC"
64 SLOT="0"
65 KEYWORDS=""
66 IUSE="vim-syntax"
67
68 DEPEND="<dev-libs/libevent-2
69 sys-libs/ncurses"
70 RDEPEND="${DEPEND}
71 vim-syntax? ( || (
72 app-editors/vim
73 app-editors/gvim ) )"
74
75 S="${WORKDIR}"/"${PN}"
76
77 src_configure() {
78 # The configure script isn't created by GNU autotools.
79 ./configure || die "configure failed"
80 }
81
82 src_compile() {
83 emake CC="$(tc-getCC)" || die "emake failed"
84 }
85
86 src_install() {
87 dobin tmux || die "dobin failed"
88
89 dodoc CHANGES FAQ NOTES TODO || die "dodoc failed"
90 docinto examples
91 dodoc examples/*.conf || die "dodoc examples failed"
92
93 doman tmux.1 || die "doman failed"
94
95 if use vim-syntax; then
96 insinto /usr/share/vim/vimfiles/syntax
97 doins examples/tmux.vim || die "doins syntax failed"
98
99 insinto /usr/share/vim/vimfiles/ftdetect
100 doins "${FILESDIR}"/tmux.vim || die "doins ftdetect failed"
101 fi
102 }