diff options
Diffstat (limited to 'dev-libs/cdk/cdk-4.9.10.20020809.ebuild')
-rw-r--r-- | dev-libs/cdk/cdk-4.9.10.20020809.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-libs/cdk/cdk-4.9.10.20020809.ebuild b/dev-libs/cdk/cdk-4.9.10.20020809.ebuild new file mode 100644 index 000000000000..379670366a9d --- /dev/null +++ b/dev-libs/cdk/cdk-4.9.10.20020809.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cdk/cdk-4.9.10.20020809.ebuild,v 1.1 2003/02/05 20:03:02 raker Exp $ + + +MY_P=${P/.2002/-2002} + +S=${WORKDIR}/${MY_P} +DESCRIPTION="A library of curses widgets" +SRC_URI="ftp://invisible-island.net/cdk/${MY_P}.tgz" +HOMEPAGE="http://dickey.his.com/cdk/cdk.html" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~x86 ~sparc" + +DEPEND=">=sys-libs/ncurses-5.2" + +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" +} |