blob: 7a6d6e23dbbbea9dd83ba54cb26b94494acd012b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclreadline/tclreadline-2.1.0.ebuild,v 1.15 2007/07/15 03:37:38 mr_bones_ Exp $
IUSE=""
DESCRIPTION="readline extension to TCL"
HOMEPAGE="http://tclreadline.sf.net/"
SRC_URI="mirror://sourceforge/tclreadline/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha ~amd64 ppc ~sparc x86"
DEPEND=">=dev-lang/tcl-8.3
sys-libs/readline"
src_compile() {
econf || die "./configure failed"
emake CFLAGS="${CFLAGS}" || die
}
src_install () {
make DESTDIR=${D} install
}
|