summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2008-02-09 01:04:47 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2008-02-09 01:04:47 +0000
commit045d7b0ffc930e9ed1403e3c0f92ad83868e7af7 (patch)
treea60a6744f1e879077683b35b107d025770aed2a1 /app-misc/ttyrec
parentRemove unused version. (diff)
downloadgentoo-2-045d7b0ffc930e9ed1403e3c0f92ad83868e7af7.tar.gz
gentoo-2-045d7b0ffc930e9ed1403e3c0f92ad83868e7af7.tar.bz2
gentoo-2-045d7b0ffc930e9ed1403e3c0f92ad83868e7af7.zip
Version bumped, bug #149355.
(Portage version: 2.1.3.19)
Diffstat (limited to 'app-misc/ttyrec')
-rw-r--r--app-misc/ttyrec/ChangeLog7
-rw-r--r--app-misc/ttyrec/ttyrec-1.0.8.ebuild28
2 files changed, 34 insertions, 1 deletions
diff --git a/app-misc/ttyrec/ChangeLog b/app-misc/ttyrec/ChangeLog
index 9220be395119..fb3b51d3dacd 100644
--- a/app-misc/ttyrec/ChangeLog
+++ b/app-misc/ttyrec/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-misc/ttyrec
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/ttyrec/ChangeLog,v 1.19 2008/01/11 21:10:34 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/ttyrec/ChangeLog,v 1.20 2008/02/09 01:04:47 matsuu Exp $
+
+*ttyrec-1.0.8 (09 Feb 2008)
+
+ 09 Feb 2008; MATSUU Takuto <matsuu@gentoo.org> +ttyrec-1.0.8.ebuild:
+ Version bumped, bug #149355.
11 Jan 2008; Fabian Groffen <grobian@gentoo.org> ttyrec-1.0.6.ebuild,
ttyrec-1.0.6-r1.ebuild:
diff --git a/app-misc/ttyrec/ttyrec-1.0.8.ebuild b/app-misc/ttyrec/ttyrec-1.0.8.ebuild
new file mode 100644
index 000000000000..65a2969b0978
--- /dev/null
+++ b/app-misc/ttyrec/ttyrec-1.0.8.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/ttyrec/ttyrec-1.0.8.ebuild,v 1.1 2008/02/09 01:04:47 matsuu Exp $
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="tty recorder"
+HOMEPAGE="http://namazu.org/~satoru/ttyrec/"
+SRC_URI="http://namazu.org/~satoru/ttyrec/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+DEPEND="virtual/libc"
+
+src_compile() {
+ # Bug 106530.
+ append-flags -DSVR4 -D_XOPEN_SOURCE=500
+ emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die
+}
+
+src_install() {
+ dobin ttyrec ttyplay ttytime || die
+ dodoc README
+ doman *.1
+}