mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
sys-libs/libapparmor: version bump 2.12.0
Package-Manager: Portage-2.3.14, Repoman-2.3.6
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST apparmor-2.11.1.tar.gz 5017646 BLAKE2B ee0176c87b2800eb562c136ff324f08e444c412117c4593ff97c4b0e4c63db2aea0721c6ed38f3c733e3c95024165f329e520acf838c4798a8285b8dedf0d51e SHA512 f088157cc116987e56c0e02127497b1ec6241f3d761ec3b53211fa188f5f02c9408d6b903f2d275328ede88ebfd1393e00aad9f68cbe78fa9ab3711ba0f9c00c
|
||||
DIST apparmor-2.12.tar.gz 7258450 BLAKE2B c1d4e01d836c5f567ddb7c5ecf36dde6efccf1e59ae219824129fd5c92162a3fed7ebdc492f181ae132b07db068660078a9631543d40fd20ab0b44cd4c646d4c SHA512 d85fd47c66333fe5658ee5e977b32142697f6e36c575550712ee2ace2ad0fbf2aa59c8fd3b82ad8821c0190adf8cc150cf623ea09a84d5b32bde050a03dd6e9a
|
||||
|
||||
95
sys-libs/libapparmor/libapparmor-2.12.0.ebuild
Normal file
95
sys-libs/libapparmor/libapparmor-2.12.0.ebuild
Normal file
@@ -0,0 +1,95 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
AUTOTOOLS_AUTORECONF=1
|
||||
DISTUTILS_OPTIONAL=1
|
||||
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
|
||||
GENTOO_DEPEND_ON_PERL="no"
|
||||
|
||||
inherit autotools-utils distutils-r1 perl-functions versionator
|
||||
|
||||
MY_PV="$(get_version_component_range 1-2)"
|
||||
|
||||
DESCRIPTION="Library to support AppArmor userspace utilities"
|
||||
HOMEPAGE="http://apparmor.net/"
|
||||
SRC_URI="https://launchpad.net/apparmor/${MY_PV}/${PV}/+download/apparmor-${MY_PV}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~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-${MY_PV}/libraries/${PN}
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
src_prepare() {
|
||||
rm -r m4 || die "failed to remove bundled macros"
|
||||
epatch "${FILESDIR}"/${PN}-2.10-symbol_visibility.patch
|
||||
autotools-utils_src_prepare
|
||||
use python && distutils-r1_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
$(use_with perl) \
|
||||
$(use_with python)
|
||||
)
|
||||
|
||||
autotools-utils_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
autotools-utils_src_compile -C src
|
||||
autotools-utils_src_compile -C include
|
||||
use doc && autotools-utils_src_compile -C doc
|
||||
use perl && autotools-utils_src_compile -C swig/perl
|
||||
|
||||
if use python ; then
|
||||
pushd "${BUILD_DIR}"/swig/python > /dev/null
|
||||
emake libapparmor_wrap.c
|
||||
distutils-r1_src_compile
|
||||
popd > /dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install -C src
|
||||
autotools-utils_src_install -C include
|
||||
use doc && autotools-utils_src_install -C doc
|
||||
|
||||
if use perl ; then
|
||||
autotools-utils_src_install -C swig/perl
|
||||
perl_set_version
|
||||
insinto "${VENDOR_ARCH}"
|
||||
doins "${BUILD_DIR}"/swig/perl/LibAppArmor.pm
|
||||
|
||||
# bug 620886
|
||||
perl_delete_localpod
|
||||
perl_fix_packlist
|
||||
fi
|
||||
|
||||
if use python ; then
|
||||
pushd "${BUILD_DIR}"/swig/python > /dev/null
|
||||
distutils-r1_src_install
|
||||
|
||||
python_moduleinto LibAppArmor
|
||||
python_foreach_impl python_domodule LibAppArmor.py
|
||||
popd > /dev/null
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user