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 | 5eb09efc99e4ce7e7dbb5620620e37dd2aea20bd (patch) | |
tree | 11a1b2bba7a2a2037af4abdd3e935ff3b518d25c /app-misc/ttyrec | |
parent | new ebuild, closing Bug #21993 (diff) | |
download | historical-5eb09efc99e4ce7e7dbb5620620e37dd2aea20bd.tar.gz historical-5eb09efc99e4ce7e7dbb5620620e37dd2aea20bd.tar.bz2 historical-5eb09efc99e4ce7e7dbb5620620e37dd2aea20bd.zip |
new ebuild, closing Bug #21993
Diffstat (limited to 'app-misc/ttyrec')
-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 |
4 files changed, 45 insertions, 1 deletions
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 +} |