blob: ad7b592268862701197cf561ad4486d445e5f888 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cdk/cdk-4.9.11.20031210-r1.ebuild,v 1.2 2004/11/09 08:52:31 voxus Exp $
MY_P=${P/.2003/-2003}
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
sys-devel/libtool"
S="${WORKDIR}/${MY_P}"
src_compile() {
econf \
--with-ncurses --with-libtool \
|| 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"
}
|