diff options
author | 2018-05-25 12:33:58 +0800 | |
---|---|---|
committer | 2018-05-25 15:27:46 +0800 | |
commit | e37d865efa9ab1de1c61312377bb43f6c0af60ef (patch) | |
tree | c825435bc14919280427d0c30fde95f4814cb72d /sys-apps/semodule-utils/semodule-utils-2.8.ebuild | |
parent | sys-apps/selinux-python: bump to 2.8 (diff) | |
download | gentoo-e37d865efa9ab1de1c61312377bb43f6c0af60ef.tar.gz gentoo-e37d865efa9ab1de1c61312377bb43f6c0af60ef.tar.bz2 gentoo-e37d865efa9ab1de1c61312377bb43f6c0af60ef.zip |
sys-apps/semodule-utils: bump to 2.8
Package-Manager: Portage-2.3.39, Repoman-2.3.9
Diffstat (limited to 'sys-apps/semodule-utils/semodule-utils-2.8.ebuild')
-rw-r--r-- | sys-apps/semodule-utils/semodule-utils-2.8.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sys-apps/semodule-utils/semodule-utils-2.8.ebuild b/sys-apps/semodule-utils/semodule-utils-2.8.ebuild new file mode 100644 index 000000000000..9c11d6fc2ec9 --- /dev/null +++ b/sys-apps/semodule-utils/semodule-utils-2.8.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit toolchain-funcs + +MY_RELEASEDATE="20180524" +SEPOL_VER="${PV}" +SELNX_VER="${PV}" + +MY_P="${P//_/-}" +IUSE="" + +if [[ ${PV} == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git" + S="${WORKDIR}/${MY_P}/${PN}" +else + SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86" + S="${WORKDIR}/${MY_P}" +fi + +DESCRIPTION="SELinux policy module utilities" +HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki" + +LICENSE="GPL-2" +SLOT="0" + +DEPEND=">=sys-libs/libsepol-${SEPOL_VER}:=" + +RDEPEND="${DEPEND} + !<sys-apps/policycoreutils-2.7_pre" + +src_prepare() { + default + + sed -i 's/-Werror//g' "${S}"/*/Makefile || die "Failed to remove Werror" +} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + emake DESTDIR="${D}" \ + install +} |