blob: 2f915545309180fe9fbfda5d3ed5786498d65dd7 (
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
35
36
37
38
39
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cdk/cdk-4.9.10.20020809-r1.ebuild,v 1.3 2005/12/13 20:37:10 tove Exp $
inherit flag-o-matic
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="ia64 x86"
IUSE=""
DEPEND=">=sys-libs/ncurses-5.2"
src_compile()
{
append-flags -fPIC
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"
}
|