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-libs/libtecla/libtecla-1.6.1-r2.ebuild

46 lines
1.0 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtecla/libtecla-1.6.1-r2.ebuild,v 1.5 2012/12/14 18:46:31 ulm Exp $
EAPI=4
inherit autotools eutils flag-o-matic multilib
DESCRIPTION="Tecla command-line editing library"
HOMEPAGE="http://www.astro.caltech.edu/~mcs/tecla/"
SRC_URI="http://www.astro.caltech.edu/~mcs/tecla/${P}.tar.gz"
LICENSE="icu"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="static-libs"
DEPEND="sys-libs/ncurses"
RDEPEND="${DEPEND}"
S=${WORKDIR}/libtecla
src_prepare() {
epatch \
"${FILESDIR}"/${P}-install.patch \
"${FILESDIR}"/${P}-ldflags.patch \
"${FILESDIR}"/${P}-no-strip.patch \
"${FILESDIR}"/${P}-parallel_build2.patch \
"${FILESDIR}"/${P}-LDFLAGS2.patch \
"${FILESDIR}"/${P}-prll-install.patch
eautoreconf
}
src_compile() {
emake \
OPT="" \
LDFLAGS="${LDFLAGS}" \
LFLAGS="$(raw-ldflags)"
}
src_install() {
default
use static-libs || \
rm -rvf "${ED}"/usr/$(get_libdir)/*a || die
}