blob: 29ae1892903aef6c0523e73a11ff770c3193cc11 (
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
40
41
42
43
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cdk/cdk-5.0.20060507.ebuild,v 1.1 2006/11/09 10:12:18 drizzt Exp $
inherit eutils versionator toolchain-funcs
MY_P="${PN}-$(replace_version_separator 2 -)"
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="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
IUSE=""
DEPEND=">=sys-libs/ncurses-5.2
sys-devel/libtool"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack "${A}"
cd "${S}"
epatch "${FILESDIR}"/${P}-as-needed.patch
}
src_compile() {
tc-export CC
econf \
--with-ncurses --with-libtool \
|| die
emake || die
}
src_install() {
emake \
DESTDIR="${D}" \
DOCUMENT_DIR="${D}/usr/share/doc/${MY_P}" install \
|| die
}
|