diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-05-19 12:46:22 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-05-19 12:46:22 +0200 |
commit | 6a567f331ca8dd103d91d6e66c036769a46bc364 (patch) | |
tree | 5870699684aa8eb1d223dd10dacb10c70766648f /dev-util | |
parent | package.mask: Last rite dev-libs/beecrypt (diff) | |
download | gentoo-6a567f331ca8dd103d91d6e66c036769a46bc364.tar.gz gentoo-6a567f331ca8dd103d91d6e66c036769a46bc364.tar.bz2 gentoo-6a567f331ca8dd103d91d6e66c036769a46bc364.zip |
dev-util/debugedit: Depend on fixed elfutils version
Replace the hack-patch disabling section reordering with a dependency
on fixed dev-libs/elfutils version.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/debugedit/debugedit-4.14.2-r2.ebuild | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/dev-util/debugedit/debugedit-4.14.2-r2.ebuild b/dev-util/debugedit/debugedit-4.14.2-r2.ebuild new file mode 100644 index 000000000000..f14f43e3c56b --- /dev/null +++ b/dev-util/debugedit/debugedit-4.14.2-r2.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic + +MY_P=rpm-${PV} +DESCRIPTION="Stand-alone debugedit from RPM" +HOMEPAGE="http://www.rpm.org + https://github.com/rpm-software-management/rpm" +SRC_URI="http://ftp.rpm.org/releases/rpm-$(ver_cut 1-2).x/${MY_P}.tar.bz2" + +LICENSE="GPL-2+ LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + sys-libs/zlib:= + >=dev-libs/popt-1.7 + >=dev-libs/elfutils-0.176-r1 + dev-libs/nss +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + eapply_user + + # cheat it into believing we're bundling db + mkdir -p db/dist || die + touch db/dist/configure || die + chmod +x db/dist/configure || die + echo 'install:' > db3/Makefile || die + + # TODO: why do we need to do this? + mkdir rpm || die + find -name '*.h' -exec cp {} rpm/ ';' || die +} + +src_configure() { + append-cppflags -I"${EPREFIX}/usr/include/nss" -I"${EPREFIX}/usr/include/nspr" + local myconf=( + # force linking to static librpmio + --disable-shared + + # disable linking compression libraries + ac_cv_header_bzlib_h=no + ac_cv_header_lzma_h=no + --disable-zstd + + # fake some libraries we don't use + ac_cv_header_magic_h=yes + ac_cv_lib_magic_magic_open=yes + + # use nss as crypto provider + --with-crypto=nss + + # disable other stuff irrelevant to debugedit + --disable-nls + --disable-python + --without-acl + --without-archive + --without-cap + --without-external-db + --without-hackingdocs + --without-lua + --without-selinux + ) + econf "${myconf[@]}" +} + +src_compile() { + emake -C misc + emake -C rpmio + emake debugedit +} + +src_test() { + : +} + +src_install() { + dobin debugedit +} |