summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2017-10-17 09:08:09 +0200
committerPatrice Clement <monsieurp@gentoo.org>2017-10-17 09:12:09 +0200
commit029c01eec2008fa0efa1d6a91c4291e6b0949e48 (patch)
treecb6f559b09ca52c310b0b9f3b74440c1a94c1aa9 /app-misc/ttyrec
parentapp-misc/ttyrec: take over maintainership. (diff)
downloadgentoo-029c01eec2008fa0efa1d6a91c4291e6b0949e48.tar.gz
gentoo-029c01eec2008fa0efa1d6a91c4291e6b0949e48.tar.bz2
gentoo-029c01eec2008fa0efa1d6a91c4291e6b0949e48.zip
app-misc/ttyrec: clean up old.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'app-misc/ttyrec')
-rw-r--r--app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch19
-rw-r--r--app-misc/ttyrec/ttyrec-1.0.8-r1.ebuild29
2 files changed, 0 insertions, 48 deletions
diff --git a/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch b/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch
deleted file mode 100644
index 5b2393ce5393..000000000000
--- a/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- Makefile~ 2010-08-09 14:01:24.351716328 -0400
-+++ Makefile 2010-08-09 14:00:45.981716329 -0400
-@@ -10,13 +10,13 @@
- all: $(TARGET)
-
- ttyrec: ttyrec.o io.o
-- $(CC) $(CFLAGS) -o ttyrec ttyrec.o io.o
-+ $(CC) $(LDFLAGS) $(CFLAGS) -o ttyrec ttyrec.o io.o
-
- ttyplay: ttyplay.o io.o
-- $(CC) $(CFLAGS) -o ttyplay ttyplay.o io.o
-+ $(CC) $(LDFLAGS) $(CFLAGS) -o ttyplay ttyplay.o io.o
-
- ttytime: ttytime.o io.o
-- $(CC) $(CFLAGS) -o ttytime ttytime.o io.o
-+ $(CC) $(LDFLAGS) $(CFLAGS) -o ttytime ttytime.o io.o
-
- clean:
- rm -f *.o $(TARGET) ttyrecord *~
diff --git a/app-misc/ttyrec/ttyrec-1.0.8-r1.ebuild b/app-misc/ttyrec/ttyrec-1.0.8-r1.ebuild
deleted file mode 100644
index ef4ff7b26149..000000000000
--- a/app-misc/ttyrec/ttyrec-1.0.8-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit base flag-o-matic toolchain-funcs
-
-DESCRIPTION="The tty recorder provides tools to record and replay a terminal session."
-HOMEPAGE="http://0xcc.net/ttyrec/"
-SRC_URI="http://namazu.org/~satoru/ttyrec/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-
-# Bug 331843
-PATCHES=( "${FILESDIR}/${P}-ldflags.patch" )
-
-src_compile() {
- # Bug 106530
- [[ ${CHOST} != *-darwin* ]] && append-cppflags -DSVR4 -D_XOPEN_SOURCE=500
- emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
-}
-
-src_install() {
- dobin ttyrec ttyplay ttytime
- dodoc README
- doman *.1
-}