summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2008-08-04 18:36:48 +0000
committerSven Wegener <swegener@gentoo.org>2008-08-04 18:36:48 +0000
commit57d3c891772c297c90ef67ddd3be4500323418f3 (patch)
tree447ef6643db59a28a947f19d2671b8d0223ec20b /app-misc/tmux
parentBump, with the blessings of robbat2 from IRC. Fix unquoted variable to please... (diff)
downloadgentoo-2-57d3c891772c297c90ef67ddd3be4500323418f3.tar.gz
gentoo-2-57d3c891772c297c90ef67ddd3be4500323418f3.tar.bz2
gentoo-2-57d3c891772c297c90ef67ddd3be4500323418f3.zip
Update from Tiago: Shorten DESCRIPTION in ebuild, add a longer description to metadata.xml instead. Add missing die to installation commands.
(Portage version: 2.2_rc6/cvs/Linux 2.6.27-rc1-00504-g2b12a4c x86_64)
Diffstat (limited to 'app-misc/tmux')
-rw-r--r--app-misc/tmux/ChangeLog7
-rw-r--r--app-misc/tmux/metadata.xml16
-rw-r--r--app-misc/tmux/tmux-0.4a.ebuild12
3 files changed, 23 insertions, 12 deletions
diff --git a/app-misc/tmux/ChangeLog b/app-misc/tmux/ChangeLog
index 660ff6cec23b..74fb1394dbce 100644
--- a/app-misc/tmux/ChangeLog
+++ b/app-misc/tmux/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-misc/tmux
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.1 2008/07/30 18:01:53 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/ChangeLog,v 1.2 2008/08/04 18:36:48 swegener Exp $
+
+ 04 Aug 2008; Sven Wegener <swegener@gentoo.org> metadata.xml,
+ tmux-0.4a.ebuild:
+ Update from Tiago: Shorten DESCRIPTION in ebuild, add a longer description
+ to metadata.xml instead. Add missing die to installation commands.
*tmux-0.4a (30 Jul 2008)
diff --git a/app-misc/tmux/metadata.xml b/app-misc/tmux/metadata.xml
index 950120c0c24e..f92b7bcc5829 100644
--- a/app-misc/tmux/metadata.xml
+++ b/app-misc/tmux/metadata.xml
@@ -1,9 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>shell-tools</herd>
-<maintainer>
- <email>swegener@gentoo.org</email>
- <description>Proxy maintainer for Tiago Cunha (me@tiagocunha.org)</description>
-</maintainer>
+ <herd>shell-tools</herd>
+ <maintainer>
+ <email>swegener@gentoo.org</email>
+ <description>Proxy maintainer for Tiago Cunha (me@tiagocunha.org)</description>
+ </maintainer>
+ <longdescription>
+tmux is a "terminal multiplexer", it enables a number of terminals (or windows)
+to be accessed and controlled from a single terminal. tmux is intended to be a
+simple, modern, BSD-licensed alternative to programs such as
+<pkg>app-misc/screen</pkg>.
+ </longdescription>
</pkgmetadata>
diff --git a/app-misc/tmux/tmux-0.4a.ebuild b/app-misc/tmux/tmux-0.4a.ebuild
index badd36a887e4..30858d99d433 100644
--- a/app-misc/tmux/tmux-0.4a.ebuild
+++ b/app-misc/tmux/tmux-0.4a.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-0.4a.ebuild,v 1.1 2008/07/30 18:01:53 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-0.4a.ebuild,v 1.2 2008/08/04 18:36:48 swegener Exp $
inherit toolchain-funcs
-DESCRIPTION="Simple, modern, alternative to programs such as GNU screen"
+DESCRIPTION="Terminal multiplexer"
HOMEPAGE="http://tmux.sourceforge.net"
SRC_URI="mirror://sourceforge/tmux/${P}.tar.gz"
@@ -21,13 +21,13 @@ src_compile() {
}
src_install() {
- dobin tmux || die "dobin tmux failed"
+ dobin tmux || die "dobin failed"
- dodoc NOTES TODO
+ dodoc NOTES TODO || die "dodoc failed"
docinto examples
- dodoc examples/*.conf
+ dodoc examples/*.conf || die "dodoc examples failed"
- doman tmux.1
+ doman tmux.1 || die "doman failed"
}
pkg_postinst() {