diff options
author | Jonas Stein <jstein@gentoo.org> | 2017-08-27 15:18:19 +0200 |
---|---|---|
committer | Jonas Stein <jstein@gentoo.org> | 2017-08-27 15:18:19 +0200 |
commit | 04fb7b4ab5db121398db6c77ebd88422ee6e8bc5 (patch) | |
tree | edc9ebdf0c68b41de92fefcc8ec2372b48371456 /app-misc/ttyrec/files | |
parent | app-misc/ttyrec: Update HOMEPAGE (diff) | |
download | gentoo-04fb7b4ab5db121398db6c77ebd88422ee6e8bc5.tar.gz gentoo-04fb7b4ab5db121398db6c77ebd88422ee6e8bc5.tar.bz2 gentoo-04fb7b4ab5db121398db6c77ebd88422ee6e8bc5.zip |
app-misc/ttyrec: Bump to EAPI=6, cleaned ebuild
The Makefile was patched not ideally and was never used
* repaired Makefile
* bumped to EAPI=6
* cleaned ebuild
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'app-misc/ttyrec/files')
-rw-r--r-- | app-misc/ttyrec/files/ttyrec-1.0.8-flags.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app-misc/ttyrec/files/ttyrec-1.0.8-flags.patch b/app-misc/ttyrec/files/ttyrec-1.0.8-flags.patch new file mode 100644 index 000000000000..34687d9b8b7a --- /dev/null +++ b/app-misc/ttyrec/files/ttyrec-1.0.8-flags.patch @@ -0,0 +1,19 @@ +--- 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 *~ |