diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-10-14 23:26:09 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-10-14 23:26:09 +0000 |
commit | 76eaf547650fb6e3934abf8cec32d71ed2051268 (patch) | |
tree | 814d66d8a385694602ab8d066e9318da4f595844 /sys-apps/conspy | |
parent | delete unused functions (diff) | |
download | gentoo-2-76eaf547650fb6e3934abf8cec32d71ed2051268.tar.gz gentoo-2-76eaf547650fb6e3934abf8cec32d71ed2051268.tar.bz2 gentoo-2-76eaf547650fb6e3934abf8cec32d71ed2051268.zip |
Version bump. Update to EAPI 4.
(Portage version: 2.2.0_alpha66/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/conspy')
-rw-r--r-- | sys-apps/conspy/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/conspy/conspy-1.8.ebuild | 27 |
2 files changed, 34 insertions, 2 deletions
diff --git a/sys-apps/conspy/ChangeLog b/sys-apps/conspy/ChangeLog index 1611a491c0d0..a8fd2ac2cf82 100644 --- a/sys-apps/conspy/ChangeLog +++ b/sys-apps/conspy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/conspy -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/conspy/ChangeLog,v 1.6 2009/12/26 14:28:03 ssuominen Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/conspy/ChangeLog,v 1.7 2011/10/14 23:26:09 radhermit Exp $ + +*conspy-1.8 (14 Oct 2011) + + 14 Oct 2011; Tim Harder <radhermit@gentoo.org> +conspy-1.8.ebuild: + Version bump. Update to EAPI 4. *conspy-1.7 (26 Dec 2009) diff --git a/sys-apps/conspy/conspy-1.8.ebuild b/sys-apps/conspy/conspy-1.8.ebuild new file mode 100644 index 000000000000..297c123bd9a2 --- /dev/null +++ b/sys-apps/conspy/conspy-1.8.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/conspy/conspy-1.8.ebuild,v 1.1 2011/10/14 23:26:09 radhermit Exp $ + +EAPI=4 +inherit autotools + +DESCRIPTION="Remote control for virtual consoles" +HOMEPAGE="http://ace-host.stuart.id.au/russell/files/conspy" +SRC_URI="http://ace-host.stuart.id.au/russell/files/${PN}/${P}.tar.gz" + +LICENSE="EPL-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="sys-libs/ncurses" +DEPEND="${RDEPEND}" + +src_prepare() { + eautoreconf +} + +src_install() { + default + dohtml ${PN}.html +} |