diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-misc/detachtty | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-misc/detachtty')
-rw-r--r-- | app-misc/detachtty/Manifest | 1 | ||||
-rw-r--r-- | app-misc/detachtty/detachtty-9.ebuild | 27 | ||||
-rw-r--r-- | app-misc/detachtty/metadata.xml | 12 |
3 files changed, 40 insertions, 0 deletions
diff --git a/app-misc/detachtty/Manifest b/app-misc/detachtty/Manifest new file mode 100644 index 000000000000..7671c58234be --- /dev/null +++ b/app-misc/detachtty/Manifest @@ -0,0 +1 @@ +DIST detachtty_9.tar.gz 13081 SHA256 bf1d6c2e16d3b83b46d6307c820d4bd02c1fe7b8ff773bd14faef66675957492 SHA512 8ae7edc1a1c7727eb4d32a1a4327932e374ac838b441f34aee99cfe83e922f1d70383ab0aab2299808f28fea6229f5c122a7624b7ff992ab92b9c3f53483d035 WHIRLPOOL c54d6b46b06444c2f39d7d427604afb278f87db6e7981ae5f9f33db1a930ed55210dae038ba550d9b6f4e6aa988ebb0ec897f3448356ea6f1d9e5acfd0bbd10c diff --git a/app-misc/detachtty/detachtty-9.ebuild b/app-misc/detachtty/detachtty-9.ebuild new file mode 100644 index 000000000000..dfb5e5a3d9d4 --- /dev/null +++ b/app-misc/detachtty/detachtty-9.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit toolchain-funcs + +MY_P="${P/-/_}" + +DESCRIPTION="Attach/detach from interactive processes across the network" +HOMEPAGE="http://packages.debian.org/unstable/admin/detachtty" +SRC_URI="mirror://debian/pool/main/d/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc ~sparc x86" +IUSE="" + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die +} + +src_install() { + dobin detachtty attachtty || die + doman detachtty.1 || die + dosym /usr/share/man/man1/detachtty.1 /usr/share/man/man1/attachtty.1 + dodoc INSTALL README || die +} diff --git a/app-misc/detachtty/metadata.xml b/app-misc/detachtty/metadata.xml new file mode 100644 index 000000000000..95138c2e6f6c --- /dev/null +++ b/app-misc/detachtty/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>shell-tools</herd> +<herd>common-lisp</herd> +<longdescription> +detachtty is a utility that lets you run interactive programs non-interactively. +Reattaching can be done locally or over the network. detachtty is similar in +concept to GNU Screen but is better suited toward scrolling interfaces (not +full-screen, random-access based applications). +</longdescription> +</pkgmetadata> |