From 8133ab35c5ada4a55920abf85103fc3841448571 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 22 Apr 2020 19:50:16 +0100 Subject: sys-apps/libapparmor : revision bump --- sys-libs/libapparmor/Manifest | 1 + .../files/libapparmor-2.10-symbol_visibility.patch | 13 +++ sys-libs/libapparmor/libapparmor-2.13.4-r10.ebuild | 98 ++++++++++++++++++++++ 3 files changed, 112 insertions(+) create mode 100644 sys-libs/libapparmor/Manifest create mode 100644 sys-libs/libapparmor/files/libapparmor-2.10-symbol_visibility.patch create mode 100644 sys-libs/libapparmor/libapparmor-2.13.4-r10.ebuild (limited to 'sys-libs') diff --git a/sys-libs/libapparmor/Manifest b/sys-libs/libapparmor/Manifest new file mode 100644 index 00000000..ba3818a6 --- /dev/null +++ b/sys-libs/libapparmor/Manifest @@ -0,0 +1 @@ +DIST apparmor-2.13.4.tar.xz 4256276 BLAKE2B ccdf6f465000faab578b7ea18738b51ce6b234acb9654d60f430fa3cd6a37782ad20877005415c92c23a6e224e9990b660c562989b672d4e36eeb9e93e844858 SHA512 e79ce182d67a21bd4c00d82f8be465526a6999b1a895ccbbbe10e3040183fcfa1380184f527d4549e5115739e3077878b1d5d6a7a1b5a4737daf6741db8493ac diff --git a/sys-libs/libapparmor/files/libapparmor-2.10-symbol_visibility.patch b/sys-libs/libapparmor/files/libapparmor-2.10-symbol_visibility.patch new file mode 100644 index 00000000..fa2c384b --- /dev/null +++ b/sys-libs/libapparmor/files/libapparmor-2.10-symbol_visibility.patch @@ -0,0 +1,13 @@ +Adds an aditional symbol to allow dynamic linking. + +--- a/src/libapparmor.map ++++ b/src/libapparmor.map +@@ -94,6 +94,7 @@ + _aa_autoclose; + _aa_autofclose; + _aa_dirat_for_each; ++ _aa_asprintf; + local: + *; + }; + diff --git a/sys-libs/libapparmor/libapparmor-2.13.4-r10.ebuild b/sys-libs/libapparmor/libapparmor-2.13.4-r10.ebuild new file mode 100644 index 00000000..1a32ab26 --- /dev/null +++ b/sys-libs/libapparmor/libapparmor-2.13.4-r10.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_OPTIONAL=1 +PYTHON_COMPAT=( python3_{5,6,7,8} ) +GENTOO_DEPEND_ON_PERL="no" + +inherit autotools distutils-r1 perl-functions + +MY_PV="$(ver_cut 1-2)" + +DESCRIPTION="Library to support AppArmor userspace utilities" +HOMEPAGE="https://gitlab.com/apparmor/apparmor/wikis/home" +SRC_URI="http://mirrors.redcorelinux.org/redcorelinux/distfiles-next/apparmor-${PV}.tar.xz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="doc +perl +python static-libs" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="perl? ( dev-lang/perl:= ) + python? ( ${PYTHON_DEPS} )" +DEPEND="${RDEPEND} + sys-devel/autoconf-archive + sys-devel/bison + sys-devel/flex + doc? ( dev-lang/perl ) + perl? ( dev-lang/swig ) + python? ( dev-lang/swig )" + +S=${WORKDIR}/apparmor-${PV}/libraries/${PN} + +PATCHES=( "${FILESDIR}/${PN}-2.10-symbol_visibility.patch" ) + +# depends on the package already being installed +RESTRICT="test" + +src_prepare() { + rm -r m4 || die "failed to remove bundled macros" + default + eautoreconf + use python && distutils-r1_src_prepare +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_with perl) \ + $(use_with python) +} + +src_compile() { + emake -C src + emake -C include + use doc && emake -C doc + use perl && emake -C swig/perl + + if use python ; then + pushd swig/python > /dev/null + emake libapparmor_wrap.c + distutils-r1_src_compile + popd > /dev/null + fi +} + +src_install() { + emake DESTDIR="${D}" -C src install + emake DESTDIR="${D}" -C include install + use doc && emake DESTDIR="${D}" -C doc install + + if use perl ; then + emake DESTDIR="${D}" -C swig/perl install + perl_set_version + insinto "${VENDOR_ARCH}" + doins swig/perl/LibAppArmor.pm + + # bug 620886 + perl_delete_localpod + perl_fix_packlist + fi + + if use python ; then + pushd swig/python > /dev/null + distutils-r1_src_install + + python_moduleinto LibAppArmor + python_foreach_impl python_domodule LibAppArmor.py + popd > /dev/null + fi + + dodoc AUTHORS ChangeLog NEWS README + + find "${D}" -name '*.la' -delete || die +} -- cgit v1.2.3