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.
48 lines
1.2 KiB
48 lines
1.2 KiB
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/re2/re2-0_p20130115.ebuild,v 1.3 2013/04/04 20:16:33 ago Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit eutils multilib toolchain-funcs
|
|
|
|
DESCRIPTION="An efficent, principled regular expression library"
|
|
HOMEPAGE="http://code.google.com/p/re2/"
|
|
SRC_URI="http://re2.googlecode.com/files/${PN}-${PV##*_p}.tgz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm x86"
|
|
IUSE=""
|
|
|
|
# TODO: the directory in the tarball should really be versioned.
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
src_prepare() {
|
|
# Fix problems with FilteredRE2 symbols not being exported.
|
|
epatch "${FILESDIR}/${PN}-symbols-r0.patch"
|
|
}
|
|
|
|
src_compile() {
|
|
makeopts=(
|
|
AR="$(tc-getAR)"
|
|
CXX="$(tc-getCXX)"
|
|
CXXFLAGS="${CXXFLAGS} -pthread"
|
|
LDFLAGS="${LDFLAGS} -pthread"
|
|
NM="$(tc-getNM)"
|
|
)
|
|
emake "${makeopts[@]}"
|
|
}
|
|
|
|
src_test() {
|
|
emake "${makeopts[@]}" shared-test
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${ED}" prefix=usr libdir=usr/$(get_libdir) install
|
|
# TODO: the upstream should not build static library at all.
|
|
rm "${ED}/usr/$(get_libdir)/libre2.a" || die
|
|
dodoc AUTHORS CONTRIBUTORS README doc/syntax.txt
|
|
dohtml doc/syntax.html
|
|
}
|