# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ MY_P=${P/.2005/-2005} DESCRIPTION="A library of curses widgets" HOMEPAGE="http://dickey.his.com/cdk/cdk.html" SRC_URI="ftp://invisible-island.net/cdk/${MY_P}.tgz" LICENSE="BSD" SLOT="0" KEYWORDS="~ppc ~x86 ~sparc ~amd64 ~alpha ~ia64 ~s390 ~ppc64" IUSE="" DEPEND=">=sys-libs/ncurses-5.2" S="${WORKDIR}/${MY_P}" src_compile() { econf \ --with-ncurses \ || die "configure failed" emake || die "make failed!" } src_install() { make \ DESTDIR=${D} \ DOCUMENT_DIR=${D}/usr/share/doc/${MY_P} install \ || die "make install failed" }