diff options
author | Mamoru Komachi <usata@gentoo.org> | 2003-09-10 16:31:29 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2003-09-10 16:31:29 +0000 |
commit | ab1e9f852e98d8a1b4a3d973508f2660883fb23e (patch) | |
tree | fa991313df2fee69517b1236d11fd12cb1338a9a /app-misc/ttyrec | |
parent | new ebuild, closing Bug #21993 (diff) | |
download | gentoo-2-ab1e9f852e98d8a1b4a3d973508f2660883fb23e.tar.gz gentoo-2-ab1e9f852e98d8a1b4a3d973508f2660883fb23e.tar.bz2 gentoo-2-ab1e9f852e98d8a1b4a3d973508f2660883fb23e.zip |
new ebuild, closing Bug #21993
Diffstat (limited to 'app-misc/ttyrec')
-rw-r--r-- | app-misc/ttyrec/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/ttyrec/Manifest | 4 | ||||
-rw-r--r-- | app-misc/ttyrec/files/digest-ttyrec-1.0.6 | 1 | ||||
-rw-r--r-- | app-misc/ttyrec/metadata.xml | 16 | ||||
-rw-r--r-- | app-misc/ttyrec/ttyrec-1.0.6.ebuild | 25 |
5 files changed, 55 insertions, 1 deletions
diff --git a/app-misc/ttyrec/ChangeLog b/app-misc/ttyrec/ChangeLog new file mode 100644 index 000000000000..e13eab1fb7c8 --- /dev/null +++ b/app-misc/ttyrec/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-misc/ttyrec +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ttyrec/ChangeLog,v 1.1 2003/09/10 16:31:17 usata Exp $ + +*ttyrec-1.0.6 (11 Sep 2003) + + 11 Sep 2003; Mamoru KOMACHI <usata@gentoo.org> ttyrec-1.0.6.ebuild: + Initial import. Ebuild submitted by MATSUU Takuto <matsuu@gentoo.org> + This closes Bug #21993 + diff --git a/app-misc/ttyrec/Manifest b/app-misc/ttyrec/Manifest index 2ceb9b36665d..50d0d3a92350 100644 --- a/app-misc/ttyrec/Manifest +++ b/app-misc/ttyrec/Manifest @@ -1,2 +1,4 @@ -MD5 74c09b7c7bd15500adad10664b816a60 ttyrec-1.0.6.ebuild 572 +MD5 f55b80ea12ee3c9b2b4c04c54e52b135 ttyrec-1.0.6.ebuild 560 +MD5 428c5432c47df6d3b69c8645da8d6672 metadata.xml 563 +MD5 773c3b48d16cc4312d633a60e01ba764 ChangeLog 408 MD5 be1d85ee85c5c944a1675384b2b335cc files/digest-ttyrec-1.0.6 62 diff --git a/app-misc/ttyrec/files/digest-ttyrec-1.0.6 b/app-misc/ttyrec/files/digest-ttyrec-1.0.6 new file mode 100644 index 000000000000..7a6181ceca74 --- /dev/null +++ b/app-misc/ttyrec/files/digest-ttyrec-1.0.6 @@ -0,0 +1 @@ +MD5 82d092bb4ccd4730ec97c3c00b4bfda4 ttyrec-1.0.6.tar.gz 8036 diff --git a/app-misc/ttyrec/metadata.xml b/app-misc/ttyrec/metadata.xml new file mode 100644 index 000000000000..23a0e054270d --- /dev/null +++ b/app-misc/ttyrec/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>matsuu@gentoo.org</email> + <name>MATSUU Takuto</name> +</maintainer> +<longdescription> +ttyrec is a tty recorder. Recorded data can be played back with the +included ttyplay command. ttyrec is just a derivative of script +command for recording timing information with microsecond accuracy as +well. It can record emacs -nw, vi, lynx, or any programs running on +tty. +</longdescription> +</pkgmetadata> diff --git a/app-misc/ttyrec/ttyrec-1.0.6.ebuild b/app-misc/ttyrec/ttyrec-1.0.6.ebuild new file mode 100644 index 000000000000..be363d4d661a --- /dev/null +++ b/app-misc/ttyrec/ttyrec-1.0.6.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ttyrec/ttyrec-1.0.6.ebuild,v 1.1 2003/09/10 16:31:17 usata Exp $ + +DESCRIPTION="tty recorder" +HOMEPAGE="http://namazu.org/~satoru/ttyrec/" +SRC_URI="http://namazu.org/~satoru/ttyrec/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +IUSE="" +KEYWORDS="~x86" + +DEPEND="virtual/glibc" + +S=${WORKDIR}/${P} + +src_compile () { + make CFLAGS="${CFLAGS}" || die +} + +src_install () { + dobin ttyrec ttyplay ttytime + dodoc README +} |