diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-06-20 20:44:16 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-06-20 20:49:05 +0100 |
commit | 20b30b6cb4bd6105b39b56e4d10a47b3eb8535b8 (patch) | |
tree | c8998cb07a98b9494a97e0aa9164c4a91e7f4043 /dev-util/ltrace | |
parent | dev-util/diffoscope: drop old (diff) | |
download | gentoo-20b30b6cb4bd6105b39b56e4d10a47b3eb8535b8.tar.gz gentoo-20b30b6cb4bd6105b39b56e4d10a47b3eb8535b8.tar.bz2 gentoo-20b30b6cb4bd6105b39b56e4d10a47b3eb8535b8.zip |
dev-util/ltrace: drop old
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-util/ltrace')
-rw-r--r-- | dev-util/ltrace/ltrace-0.7.3_p4.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/dev-util/ltrace/ltrace-0.7.3_p4.ebuild b/dev-util/ltrace/ltrace-0.7.3_p4.ebuild deleted file mode 100644 index 2f15597a0646..000000000000 --- a/dev-util/ltrace/ltrace-0.7.3_p4.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools - -LTRACE_V=${PV/_p*/} -DB_V=${PV/*_p/} - -DESCRIPTION="trace library calls made at runtime" -HOMEPAGE="https://gitlab.com/cespedes/ltrace" -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 )" - -RESTRICT="!test? ( test )" - -S=${WORKDIR}/${PN}-${LTRACE_V} - -PATCHES=( - "${FILESDIR}"/${PN}-0.7.3-test-protos.patch #bug 421649 - "${FILESDIR}"/${PN}-0.7.3-alpha-protos.patch - "${FILESDIR}"/${PN}-0.7.3-ia64.patch - "${FILESDIR}"/${PN}-0.7.3-print-test-pie.patch - "${FILESDIR}"/${PN}-0.7.3-ia64-pid_t.patch -) - -src_prepare() { - eapply "${WORKDIR}"/debian/patches/[0-9]* - - default - - 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) -} |