diff options
Diffstat (limited to 'app-misc/ttyrec')
-rw-r--r-- | app-misc/ttyrec/Manifest | 4 | ||||
-rw-r--r-- | app-misc/ttyrec/files/ttyrec-1.0.8-flags.patch | 19 | ||||
-rw-r--r-- | app-misc/ttyrec/metadata.xml | 15 | ||||
-rw-r--r-- | app-misc/ttyrec/ttyrec-1.0.8-r2.ebuild | 27 |
4 files changed, 0 insertions, 65 deletions
diff --git a/app-misc/ttyrec/Manifest b/app-misc/ttyrec/Manifest deleted file mode 100644 index 2772de9aa2e2..000000000000 --- a/app-misc/ttyrec/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX ttyrec-1.0.8-flags.patch 591 BLAKE2B 25a29be68f318dcb0604c6b3bf982f24d806f889f86bfbbe3795e6999763951fca64f02d82ac0a82e720c380e8432eb7d9e0cd6f9e7d1b193699fb614867e3b0 SHA512 245a5e34611869d4b612a25922cde034ad3e54a3b7579850f2ddce3e0200726ed3707a518464c176044c9a9ab5f60737ded7941f1882d560d963c59e6221861c -DIST ttyrec-1.0.8.tar.gz 8528 BLAKE2B 8b0218cb7fecdbcbaeee9da2b7982b880bb6f0092f65f2c730c5942eb3ab6dd9978b7168ff537b81503c697c5b948e7a0e2a267c35de1c0038d85277c6610a74 SHA512 b7f6f4c78c5148dacc7058534d89f13fcf333ee9e099d4475135e9c15a99a8aed72bf4bd5954652a6bb044d11ad35b4cb8d07208a5349c79c811f68fde7e8611 -EBUILD ttyrec-1.0.8-r2.ebuild 687 BLAKE2B 8283817ca58b4b79230360b6894944325ae092f85e9fd9d94dc27b0700b1328290ff852837ca52046f1182d8d42b830113a9df84502a20ed4ff2b584df08a99a SHA512 9917bed3418ac6638c3e3714f0452b3249afa277fbe39550928692cfe778f2e0bbe43424cafbb2096f5ca45b4c9b4513afdc5b8acc492ea62b918cc76fc99003 -MISC metadata.xml 575 BLAKE2B cbadaa7de1bd014a8b4d0fdce081ec4f078febf7a0884639762f714fadab3adbf6603475b331a2a07a17c0934ab0f5262bfd1191b5face6a252f7d4de8d06054 SHA512 57adba15d5ac7ae8f49445e81c7aefd99a840721b8636505908493e3e76ed12c24eb5ae87970de701395415c096ca360ad81fe27139fb4db79cfc3da1b7784fa diff --git a/app-misc/ttyrec/files/ttyrec-1.0.8-flags.patch b/app-misc/ttyrec/files/ttyrec-1.0.8-flags.patch deleted file mode 100644 index 34687d9b8b7a..000000000000 --- a/app-misc/ttyrec/files/ttyrec-1.0.8-flags.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- a/Makefile 2017-08-26 11:47:02.981266309 +0200 -+++ b/Makefile 2017-08-26 14:33:47.161600445 +0200 -@@ -10,13 +10,13 @@ - all: $(TARGET) - - ttyrec: ttyrec.o io.o -- $(CC) $(CFLAGS) -o ttyrec ttyrec.o io.o -+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o ttyrec ttyrec.o io.o - - ttyplay: ttyplay.o io.o -- $(CC) $(CFLAGS) -o ttyplay ttyplay.o io.o -+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o ttyplay ttyplay.o io.o - - ttytime: ttytime.o io.o -- $(CC) $(CFLAGS) -o ttytime ttytime.o io.o -+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o ttytime ttytime.o io.o - - clean: - rm -f *.o $(TARGET) ttyrecord *~ diff --git a/app-misc/ttyrec/metadata.xml b/app-misc/ttyrec/metadata.xml deleted file mode 100644 index a7bed5c50932..000000000000 --- a/app-misc/ttyrec/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>monsieurp@gentoo.org</email> - <name>Patrice Clement</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.8-r2.ebuild b/app-misc/ttyrec/ttyrec-1.0.8-r2.ebuild deleted file mode 100644 index bd0fe694547e..000000000000 --- a/app-misc/ttyrec/ttyrec-1.0.8-r2.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="ttyrec provides tools to record and replay a terminal session" -HOMEPAGE="http://0xcc.net/ttyrec/" -SRC_URI="http://0xcc.net/ttyrec/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -PATCHES=( "${FILESDIR}/${P}-flags.patch" ) - -src_compile() { - # Bug 106530 - [[ ${CHOST} != *-darwin* ]] && append-cppflags -DSVR4 -D_XOPEN_SOURCE=500 - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" -} - -src_install() { - dobin tty{rec,play,time} - doman *.1 - einstalldocs -} |