blob: dbfe4def2af2a5887964dad9caf1a724348d7fe3 (
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
|
# Copyright 1999-2013 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-r2.ebuild,v 1.2 2013/03/25 20:32:08 ago Exp $
EAPI=5
AUTOTOOLS_AUTORECONF=yes
inherit autotools-utils multilib
DESCRIPTION="Readline extension to TCL"
HOMEPAGE="http://tclreadline.sf.net/"
SRC_URI="mirror://sourceforge/tclreadline/${P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
DEPEND="
dev-lang/tcl
sys-libs/readline"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}"/${P}-gold.patch )
src_configure() {
local myeconfargs=(
--with-tcl="${EPREFIX}/usr/$(get_libdir)"
--with-tcl-includes="${EPREFIX}/usr/include"
--with-readline-includes="${EPREFIX}/usr/include"
--with-readline-library="${EPREFIX}/usr/$(get_libdir)"
)
autotools-utils_src_configure
}
|