diff options
author | 2021-10-24 12:48:50 +0100 | |
---|---|---|
committer | 2021-10-31 02:50:21 +0000 | |
commit | 625f42a5adbc3fc64bd0350596a293336f6b814e (patch) | |
tree | 44fb90911009fdf9d417b5a7e3b9a92bf652b65c /sys-apps/mcstrans/mcstrans-3.3.ebuild | |
parent | sys-apps/checkpolicy: Version updated to 3.3. (diff) | |
download | gentoo-625f42a5adbc3fc64bd0350596a293336f6b814e.tar.gz gentoo-625f42a5adbc3fc64bd0350596a293336f6b814e.tar.bz2 gentoo-625f42a5adbc3fc64bd0350596a293336f6b814e.zip |
sys-apps/mcstrans: Version updated to 3.3.
Signed-off-by: Jonathan Davies <jpds@protonmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps/mcstrans/mcstrans-3.3.ebuild')
-rw-r--r-- | sys-apps/mcstrans/mcstrans-3.3.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sys-apps/mcstrans/mcstrans-3.3.ebuild b/sys-apps/mcstrans/mcstrans-3.3.ebuild new file mode 100644 index 000000000000..631d654a0a38 --- /dev/null +++ b/sys-apps/mcstrans/mcstrans-3.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit toolchain-funcs + +IUSE="" + +if [[ ${PV} == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git" + S="${WORKDIR}/${P}/${PN}" +else + SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86" +fi + +DESCRIPTION="SELinux context translation to human readable names" +HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki" + +LICENSE="GPL-2" +SLOT="0" + +DEPEND=">=sys-libs/libsepol-${PV}:= + >=sys-libs/libselinux-${PV}:= + dev-libs/libpcre:= + >=sys-libs/libcap-1.10-r10:=" + +RDEPEND="${DEPEND}" + +src_prepare() { + default + + sed -i 's/-Werror//g' "${S}"/*/Makefile || die "Failed to remove Werror" +} + +src_compile() { + tc-export CC + default +} + +src_install() { + emake DESTDIR="${D}" install + + rm -rf "${D}/etc/rc.d" || die + + newinitd "${FILESDIR}/mcstransd.init" mcstransd +} |