summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Anderson <gentoofan23@gentoo.org>2008-07-30 18:05:32 +0000
committerThomas Anderson <gentoofan23@gentoo.org>2008-07-30 18:05:32 +0000
commit11ea21b68f2b60a5b78f7e7a6bbbc8980695fda2 (patch)
tree3144c830ce1c9046b5363e015945b2045a2874db
parentapp-misc/qbrew: Remove depreciated qt4 eclass functions and fix for qt split ... (diff)
downloadsunrise-11ea21b68f2b60a5b78f7e7a6bbbc8980695fda2.tar.gz
sunrise-11ea21b68f2b60a5b78f7e7a6bbbc8980695fda2.tar.bz2
sunrise-11ea21b68f2b60a5b78f7e7a6bbbc8980695fda2.zip
Tmux moved to gentoo-x86
svn path=/sunrise/; revision=6607
-rw-r--r--app-misc/tmux/ChangeLog25
-rw-r--r--app-misc/tmux/Manifest4
-rw-r--r--app-misc/tmux/metadata.xml5
-rw-r--r--app-misc/tmux/tmux-0.4.ebuild49
4 files changed, 0 insertions, 83 deletions
diff --git a/app-misc/tmux/ChangeLog b/app-misc/tmux/ChangeLog
deleted file mode 100644
index 54b611d45..000000000
--- a/app-misc/tmux/ChangeLog
+++ /dev/null
@@ -1,25 +0,0 @@
-# ChangeLog for app-misc/tmux
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
- 29 Jul 2008; Tiago Cunha (tcunha) <me@tiagocunha.org> tmux-0.4.ebuild:
- This release still doesn't support the ESC character code for window titles,
- hence add an elog message (prevents weird prompts)
-
- 17 Jun 2008; Tiago Cunha (tcunha) <me@tiagocunha.org> -tmux-0.2.ebuild,
- +tmux-0.3.ebuild:
- Version bump, this version adds a MANDIR variable to GNUmakefile so correct
- it in src_install instead, remove old
-
- 11 Jun 2008; Tiago Cunha (tcunha) <me@tiagocunha.org> tmux-0.2.ebuild:
- Simplify die messages, while there avoid using identical die messages in the
- same function to ease error identification
-
- 04 Jun 2008; Tiago Cunha (tcunha) <me@tiagocunha.org> tmux-0.2.ebuild:
- New USE flag 'debug' added
-
- 02 Jun 2008; Tiago Cunha (tcunha) <me@tiagocunha.org> +tmux-0.2.ebuild,
- +metadata.xml:
- New Ebuild for bug 224455. Thanks to drac for reviewing, and Marek Miller
- for testing on x86 and improving src_install by installing the docs/examples
-
diff --git a/app-misc/tmux/Manifest b/app-misc/tmux/Manifest
deleted file mode 100644
index eef28ebfb..000000000
--- a/app-misc/tmux/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST tmux-0.4.tar.gz 100671 RMD160 1993b9216ce3c8684655c916d23b3a6bcd10235d SHA1 b6d2521bd8ed2962f947c1fa8945aef7048d500c SHA256 af6b253c0c5df965d057cd1d7159287c1c1392a3adb0edcf2f2adbc0071ae80a
-EBUILD tmux-0.4.ebuild 1000 RMD160 e7bf559077d6aed1fe43a27d18c2cbc2718a2acf SHA1 2fd231116c83649882660cf9fd24343a7969966c SHA256 6b1508b9f3da70e5941a802860c0435e9641d1cd2115de1d20dec82b7af01e88
-MISC ChangeLog 1081 RMD160 f84a0d6823f9d1cd048c6daf8d949a807ee77a8e SHA1 64262b702fa1a6208316fd9a9865e7678197c954 SHA256 7d120a858d4d64b1834945eb9f44fc432c41228bfdf8475f0f8ba04a93ccca17
-MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/app-misc/tmux/metadata.xml b/app-misc/tmux/metadata.xml
deleted file mode 100644
index 7e3286984..000000000
--- a/app-misc/tmux/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>maintainer-wanted</herd>
-</pkgmetadata>
diff --git a/app-misc/tmux/tmux-0.4.ebuild b/app-misc/tmux/tmux-0.4.ebuild
deleted file mode 100644
index 59515c170..000000000
--- a/app-misc/tmux/tmux-0.4.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit toolchain-funcs
-
-DESCRIPTION="Simple, modern, alternative to programs such as GNU screen"
-HOMEPAGE="http://tmux.sourceforge.net"
-SRC_URI="mirror://sourceforge/tmux/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~sparc ~x86"
-IUSE="debug examples"
-
-DEPEND="sys-libs/ncurses"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- if use debug ; then
- sed -i "/DEBUG/s/^#//" GNUmakefile || die "sed debug failed"
- fi
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" || die "emake failed"
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- MANDIR="/usr/share/man/man1" \
- PREFIX="/usr" install || die "emake install failed"
-
- dodoc NOTES TODO
-
- if use examples ; then
- docinto examples
- dodoc examples/*
- fi
-}
-
-pkg_postinst() {
- elog "NOTE that tmux doesn't support \\\033_string\\\033\\\\\\ for window"
- elog "titles. If you're using BASH unset PROMPT_COMMAND."
-}