Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ttyrec/, app-misc/ttyrec/files/
Date: Tue, 17 Oct 2017 07:12:19
Message-Id: 1508224329.029c01eec2008fa0efa1d6a91c4291e6b0949e48.monsieurp@gentoo
1 commit: 029c01eec2008fa0efa1d6a91c4291e6b0949e48
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 17 07:08:09 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 17 07:12:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=029c01ee
7
8 app-misc/ttyrec: clean up old.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch | 19 ----------------
13 app-misc/ttyrec/ttyrec-1.0.8-r1.ebuild | 29 ------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch b/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch
17 deleted file mode 100644
18 index 5b2393ce539..00000000000
19 --- a/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch
20 +++ /dev/null
21 @@ -1,19 +0,0 @@
22 ---- Makefile~ 2010-08-09 14:01:24.351716328 -0400
23 -+++ Makefile 2010-08-09 14:00:45.981716329 -0400
24 -@@ -10,13 +10,13 @@
25 - all: $(TARGET)
26 -
27 - ttyrec: ttyrec.o io.o
28 -- $(CC) $(CFLAGS) -o ttyrec ttyrec.o io.o
29 -+ $(CC) $(LDFLAGS) $(CFLAGS) -o ttyrec ttyrec.o io.o
30 -
31 - ttyplay: ttyplay.o io.o
32 -- $(CC) $(CFLAGS) -o ttyplay ttyplay.o io.o
33 -+ $(CC) $(LDFLAGS) $(CFLAGS) -o ttyplay ttyplay.o io.o
34 -
35 - ttytime: ttytime.o io.o
36 -- $(CC) $(CFLAGS) -o ttytime ttytime.o io.o
37 -+ $(CC) $(LDFLAGS) $(CFLAGS) -o ttytime ttytime.o io.o
38 -
39 - clean:
40 - rm -f *.o $(TARGET) ttyrecord *~
41
42 diff --git a/app-misc/ttyrec/ttyrec-1.0.8-r1.ebuild b/app-misc/ttyrec/ttyrec-1.0.8-r1.ebuild
43 deleted file mode 100644
44 index ef4ff7b2614..00000000000
45 --- a/app-misc/ttyrec/ttyrec-1.0.8-r1.ebuild
46 +++ /dev/null
47 @@ -1,29 +0,0 @@
48 -# Copyright 1999-2017 Gentoo Foundation
49 -# Distributed under the terms of the GNU General Public License v2
50 -
51 -EAPI=5
52 -
53 -inherit base flag-o-matic toolchain-funcs
54 -
55 -DESCRIPTION="The tty recorder provides tools to record and replay a terminal session."
56 -HOMEPAGE="http://0xcc.net/ttyrec/"
57 -SRC_URI="http://namazu.org/~satoru/ttyrec/${P}.tar.gz"
58 -
59 -LICENSE="BSD"
60 -SLOT="0"
61 -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
62 -
63 -# Bug 331843
64 -PATCHES=( "${FILESDIR}/${P}-ldflags.patch" )
65 -
66 -src_compile() {
67 - # Bug 106530
68 - [[ ${CHOST} != *-darwin* ]] && append-cppflags -DSVR4 -D_XOPEN_SOURCE=500
69 - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
70 -}
71 -
72 -src_install() {
73 - dobin ttyrec ttyplay ttytime
74 - dodoc README
75 - doman *.1
76 -}