diff options
Diffstat (limited to 'app-misc/clockywock')
-rw-r--r-- | app-misc/clockywock/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/clockywock/clockywock-0.2.3f.ebuild | 32 |
2 files changed, 40 insertions, 2 deletions
diff --git a/app-misc/clockywock/ChangeLog b/app-misc/clockywock/ChangeLog index 1c4f298c3d7a..d5c4273827ba 100644 --- a/app-misc/clockywock/ChangeLog +++ b/app-misc/clockywock/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-misc/clockywock -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/clockywock/ChangeLog,v 1.7 2010/03/26 20:36:34 ssuominen Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/clockywock/ChangeLog,v 1.8 2011/01/31 20:29:11 ssuominen Exp $ + +*clockywock-0.2.3f (31 Jan 2011) + + 31 Jan 2011; Samuli Suominen <ssuominen@gentoo.org> + +clockywock-0.2.3f.ebuild: + Version bump wrt #353082 by Kevin McCarthy. *clockywock-0.2.3d (26 Mar 2010) diff --git a/app-misc/clockywock/clockywock-0.2.3f.ebuild b/app-misc/clockywock/clockywock-0.2.3f.ebuild new file mode 100644 index 000000000000..911ef6e50ce5 --- /dev/null +++ b/app-misc/clockywock/clockywock-0.2.3f.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/clockywock/clockywock-0.2.3f.ebuild,v 1.1 2011/01/31 20:29:11 ssuominen Exp $ + +EAPI=4 +inherit eutils + +MY_P=${P/f/F} + +DESCRIPTION="ncurses based analog clock" +HOMEPAGE="http://dentar.com/open-source" +SRC_URI="https://dentar.com/opensource/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="sys-libs/ncurses" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + epatch "${FILESDIR}"/${P}-makefile.patch +} + +src_install() { + dobin ${PN} + doman ${PN}.7 + dodoc README CREDITS +} |