diff options
Diffstat (limited to 'sys-libs/libapparmor/libapparmor-5.0.0.ebuild')
| -rw-r--r-- | sys-libs/libapparmor/libapparmor-5.0.0.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/sys-libs/libapparmor/libapparmor-5.0.0.ebuild b/sys-libs/libapparmor/libapparmor-5.0.0.ebuild new file mode 100644 index 000000000000..6583ccd7e3b6 --- /dev/null +++ b/sys-libs/libapparmor/libapparmor-5.0.0.ebuild @@ -0,0 +1,72 @@ +# Copyright 2022-2026 Liguros Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=8 + +DISTUTILS_OPTIONAL=1 +GENTOO_DEPEND_ON_PERL="no" + +inherit autotools 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="https://gitlab.com/apparmor/apparmor/-/archive/v${PV}/${PN}-v${PV}.tar.gz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +IUSE="doc +perl static-libs" + +RDEPEND="perl? ( dev-lang/perl:= )" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-build/autoconf-archive + sys-devel/bison + sys-devel/flex + doc? ( dev-lang/perl ) + perl? ( dev-lang/swig ) +" +S=${WORKDIR}/apparmor-v${PV}-f83432c9ffe90d81f0e52ea25089d272b4aa6db1/libraries/${PN} + +# depends on the package already being installed +RESTRICT="test" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_with perl) +} + +src_compile() { + emake -C src + emake -C include + use doc && emake -C doc + use perl && emake -C swig/perl +} + +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 + + dodoc AUTHORS ChangeLog NEWS README + + find "${D}" -name '*.la' -delete || die +} |
