Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/mcstrans/
Date: Sun, 09 Jul 2017 10:04:10
Message-Id: 1499594579.6ea7b86385afc251c68406d34f298ee6d85ccd00.perfinion@gentoo
1 commit: 6ea7b86385afc251c68406d34f298ee6d85ccd00
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 9 08:07:07 2017 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 9 10:02:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ea7b863
7
8 sys-apps/mcstrans: bump to 2.7_rc4
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 sys-apps/mcstrans/Manifest | 1 +
13 sys-apps/mcstrans/mcstrans-2.7_rc4.ebuild | 57 +++++++++++++++++++++++++++++++
14 2 files changed, 58 insertions(+)
15
16 diff --git a/sys-apps/mcstrans/Manifest b/sys-apps/mcstrans/Manifest
17 index b5986e55e0c..f4e23566db3 100644
18 --- a/sys-apps/mcstrans/Manifest
19 +++ b/sys-apps/mcstrans/Manifest
20 @@ -1 +1,2 @@
21 DIST mcstrans-2.7-rc1.tar.gz 41124 SHA256 5e80b7dc9fc0204a2d561941ea8b220193cf3d34dba9ac527878a7ee036be01d SHA512 c0db564a693e3dc81759df54ce1b3e4ce6fdb22f3b0a998f4f31919644bae086d22acf6f248d789df1de24fb3d1d3a17bc45f9c39f8ed5b02467ac05177529fa WHIRLPOOL b2164b2005a3d30963c86301bc1f76d39605d7d72e055e12cafd6cc645c2bcde54f773c41db842ab830becd69454519a628754bd6041d3a45b9a56ee55489740
22 +DIST mcstrans-2.7-rc4.tar.gz 41154 SHA256 0548cc928609b17a2cfe0cac62146b79c44f86ec553ba41d8a9dae7876a9ae2b SHA512 6f6e5843a8932e6a37d978a6af4fb64bddfad8e34afff7bd7e2ba8d92954c7cc7abd390104a5fba8e98d43e40de5c7cc3e48ba2f6c4c599df7905f84448c7e3d WHIRLPOOL 5868ffa1d44b873307c2fe3a7637ae2ad90ba22a2133eb1c416d435436d18ebfa4bca7886eb6a1bf4f20cc6d73f6102b1bdab41193bba3677db8dad7fea3c15b
23
24 diff --git a/sys-apps/mcstrans/mcstrans-2.7_rc4.ebuild b/sys-apps/mcstrans/mcstrans-2.7_rc4.ebuild
25 new file mode 100644
26 index 00000000000..676c323055b
27 --- /dev/null
28 +++ b/sys-apps/mcstrans/mcstrans-2.7_rc4.ebuild
29 @@ -0,0 +1,57 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +
35 +inherit toolchain-funcs
36 +
37 +MY_RELEASEDATE="20170630"
38 +
39 +MY_P="${P//_/-}"
40 +IUSE=""
41 +
42 +if [[ ${PV} == *9999 ]] ; then
43 + inherit git-r3
44 + EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git"
45 + S="${WORKDIR}/${MY_P}/${PN}"
46 +else
47 + SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz"
48 + KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
49 + S="${WORKDIR}/${MY_P}"
50 +fi
51 +
52 +DESCRIPTION="SELinux context translation to human readable names"
53 +HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki"
54 +
55 +LICENSE="GPL-2"
56 +SLOT="0"
57 +
58 +DEPEND=">=sys-libs/libsepol-${PV}:=
59 + >=sys-libs/libselinux-${PV}:=
60 + dev-libs/libpcre:=
61 + >=sys-libs/libcap-1.10-r10:="
62 +
63 +RDEPEND="${DEPEND}
64 + !<sys-apps/policycoreutils-2.7_pre"
65 +
66 +src_prepare() {
67 + default
68 +
69 + sed -i 's/-Werror//g' "${S}"/*/Makefile || die "Failed to remove Werror"
70 +}
71 +
72 +src_compile() {
73 + emake \
74 + CC="$(tc-getCC)" \
75 + LIBDIR="\$(PREFIX)/$(get_libdir)"
76 +}
77 +
78 +src_install() {
79 + emake DESTDIR="${D}" \
80 + LIBDIR="\$(PREFIX)/$(get_libdir)" \
81 + install
82 +
83 + rm -rf "${D}/etc/rc.d" || die
84 +
85 + newinitd "${FILESDIR}/mcstransd.init" mcstransd
86 +}