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-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
inherit autotools eutils
|
|
|
|
LTRACE_V=${PV/_p*/}
|
|
DB_V=${PV/*_p/}
|
|
|
|
DESCRIPTION="trace library calls made at runtime"
|
|
HOMEPAGE="http://ltrace.alioth.debian.org/"
|
|
SRC_URI="
|
|
mirror://debian/pool/main/l/${PN}/${PN}_${LTRACE_V}.orig.tar.bz2
|
|
mirror://debian/pool/main/l/${PN}/${PN}_${LTRACE_V}-${DB_V}.debian.tar.gz
|
|
"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
|
|
IUSE="debug selinux test unwind"
|
|
|
|
RDEPEND="dev-libs/elfutils
|
|
selinux? ( sys-libs/libselinux )
|
|
unwind? ( sys-libs/libunwind )"
|
|
DEPEND="${RDEPEND}
|
|
sys-libs/binutils-libs
|
|
test? ( dev-util/dejagnu )"
|
|
|
|
S=${WORKDIR}/${PN}-${LTRACE_V}
|
|
|
|
src_prepare() {
|
|
epatch "${WORKDIR}"/debian/patches/[0-9]*
|
|
epatch "${FILESDIR}"/${PN}-0.7.3-test-protos.patch #bug 421649
|
|
epatch "${FILESDIR}"/${PN}-0.7.3-alpha-protos.patch
|
|
sed -i '/^dist_doc_DATA/d' Makefile.am || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
ac_cv_header_selinux_selinux_h=$(usex selinux) \
|
|
ac_cv_lib_selinux_security_get_boolean_active=$(usex selinux) \
|
|
econf \
|
|
--disable-werror \
|
|
$(use_enable debug) \
|
|
$(use_with unwind libunwind)
|
|
}
|