diff options
author | Michael Weber <xmw@gentoo.org> | 2012-10-18 19:10:13 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2012-10-18 19:10:13 +0000 |
commit | 80450d4193303c7b2a14922271e2a735670919c2 (patch) | |
tree | 7f810231dec85faf0ffb1621816a386a4afcce07 /dev-libs/rote/rote-0.2.8.ebuild | |
parent | Introduce a doc USE flag to build and install the HTML documentation. (diff) | |
download | gentoo-2-80450d4193303c7b2a14922271e2a735670919c2.tar.gz gentoo-2-80450d4193303c7b2a14922271e2a735670919c2.tar.bz2 gentoo-2-80450d4193303c7b2a14922271e2a735670919c2.zip |
EAPI-4, taking maint.
(Portage version: 2.1.11.26/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/rote/rote-0.2.8.ebuild')
-rw-r--r-- | dev-libs/rote/rote-0.2.8.ebuild | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/dev-libs/rote/rote-0.2.8.ebuild b/dev-libs/rote/rote-0.2.8.ebuild index c526d62f421d..36e9d8d68cfe 100644 --- a/dev-libs/rote/rote-0.2.8.ebuild +++ b/dev-libs/rote/rote-0.2.8.ebuild @@ -1,19 +1,18 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/rote/rote-0.2.8.ebuild,v 1.2 2009/09/23 17:26:01 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/rote/rote-0.2.8.ebuild,v 1.3 2012/10/18 19:10:13 xmw Exp $ -inherit eutils +EAPI=4 -DESCRIPTION="A simple C library for VT102 terminal emulation" +DESCRIPTION="simple C library for VT102 terminal emulation" HOMEPAGE="http://rote.sourceforge.net/" -SRC_URI="mirror://sourceforge/rote/${P}.tar.gz" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="" -src_install() { - make DESTDIR=${D} install || die - dodoc README -} +RDEPEND="sys-libs/ncurses" +DEPEND="${RDEPEND}" + |