You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-tcltk/tclreadline/tclreadline-2.1.0-r2.ebuild

36 lines
919 B

# 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.5 2013/03/30 14:50:17 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
}