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/ttyrec-1.0.8-r2.ebuild | |
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/ttyrec-1.0.8-r2.ebuild')
-rw-r--r-- | app-misc/ttyrec/ttyrec-1.0.8-r2.ebuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app-misc/ttyrec/ttyrec-1.0.8-r2.ebuild b/app-misc/ttyrec/ttyrec-1.0.8-r2.ebuild new file mode 100644 index 000000000000..0d2cb545ef30 --- /dev/null +++ b/app-misc/ttyrec/ttyrec-1.0.8-r2.ebuild @@ -0,0 +1,21 @@ +# 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="The tty recorder 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_install() { + dobin ttyrec ttyplay ttytime + dodoc README + doman *.1 +} |