Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 551864 Details for
Bug 669018
app-crypt/mit-krb5-1.16.1: USE flags for dependencies asm and cmocka missing
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
new version patched to allow additional use flags and dependencies
mit-krb5-1.16.1-r1.ebuild (text/plain), 4.56 KB, created by
Jon Daniel
on 2018-10-19 19:18:57 UTC
(
hide
)
Description:
new version patched to allow additional use flags and dependencies
Filename:
MIME Type:
Creator:
Jon Daniel
Created:
2018-10-19 19:18:57 UTC
Size:
4.56 KB
patch
obsolete
># Copyright 1999-2018 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 > >EAPI=6 > >PYTHON_COMPAT=( python2_7 ) >inherit autotools flag-o-matic multilib-minimal python-any-r1 systemd versionator > >MY_P="${P/mit-}" >P_DIR=$(get_version_component_range 1-2) >DESCRIPTION="MIT Kerberos V" >HOMEPAGE="https://web.mit.edu/kerberos/www/" >SRC_URI="https://web.mit.edu/kerberos/dist/krb5/${P_DIR}/${MY_P}.tar.gz" > >LICENSE="openafs-krb5-a BSD MIT OPENLDAP BSD-2 HPND BSD-4 ISC RSA CC-BY-SA-3.0 || ( BSD-2 GPL-2+ )" >SLOT="0" >KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" >IUSE="doc +keyutils libressl nls openldap +pkinit selinux +threads test xinetd aes cmocka libedit +readline" > ># Test suite require network access >RESTRICT="test" > >CDEPEND=" > !!app-crypt/heimdal > >=sys-libs/e2fsprogs-libs-1.42.9[${MULTILIB_USEDEP}] > || ( > >=dev-libs/libverto-0.2.5[libev,${MULTILIB_USEDEP}] > >=dev-libs/libverto-0.2.5[libevent,${MULTILIB_USEDEP}] > >=dev-libs/libverto-0.2.5[tevent,${MULTILIB_USEDEP}] > ) > keyutils? ( >=sys-apps/keyutils-1.5.8[${MULTILIB_USEDEP}] ) > nls? ( sys-devel/gettext[${MULTILIB_USEDEP}] ) > openldap? ( >=net-nds/openldap-2.4.38-r1[${MULTILIB_USEDEP}] ) > pkinit? ( > !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}] ) > libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) > ) > aes? ( > amd64? ( dev-lang/yasm[${MULTILIB_USEDEP}] ${CPU_FLAGS_X86[aes]} ) > x86? ( dev-lang/yasm[${MULTILIB_USEDEP}] ${CPU_FLAGS_X86[aes]} ) > ) > libedit? ( sys-libs/libedit[${MULTILIB_USEDEP}] ) > readline? ( sys-libs/readline[${MULTILIB_USEDEP}] ) > cmocka? ( dev-util/cmocka[${MULTILIB_USEDEP}] ) > xinetd? ( sys-apps/xinetd[${MULTILIB_USEDEP}] )" >DEPEND="${CDEPEND} > ${PYTHON_DEPS} > virtual/yacc > doc? ( virtual/latex-base ) > test? ( > ${PYTHON_DEPS} > dev-lang/tcl:0 > dev-util/dejagnu > )" >RDEPEND="${CDEPEND} > selinux? ( sec-policy/selinux-kerberos )" > >S=${WORKDIR}/${MY_P}/src > >MULTILIB_CHOST_TOOLS=( > /usr/bin/krb5-config >) > >src_prepare() { > eapply "${FILESDIR}/${PN}-1.12_warn_cflags.patch" > eapply -p2 "${FILESDIR}/${PN}-config_LDFLAGS.patch" > eapply "${FILESDIR}/${PN}-libressl-version-check.patch" > eapply "${FILESDIR}/${PN}-configure.in.patch" > > # Make sure we always use the system copies. > rm -rf util/{et,ss,verto} > sed -i 's:^[[:space:]]*util/verto$::' configure.in || die > > eapply_user > eautoreconf >} > >src_configure() { > # QA > append-flags -fno-strict-aliasing > append-flags -fno-strict-overflow > > multilib-minimal_src_configure >} > >multilib_src_configure() { > use keyutils || export ac_cv_header_keyutils_h=no > ECONF_SOURCE=${S} \ > WARN_CFLAGS="set" \ > econf \ > $(use_with openldap ldap) \ > "$(multilib_native_use_with test tcl "${EPREFIX}/usr")" \ > $(use_enable nls) \ > $(use_enable pkinit) \ > $(use_enable aes aesni) \ > $(use_enable threads thread-support) \ > $(use_enable cmocka) \ > $(use_with libedit) \ > $(use_with readline) \ > --without-hesiod \ > --enable-shared \ > --with-system-et \ > --with-system-ss \ > --enable-dns-for-realm \ > --enable-kdc-lookaside-cache \ > --with-system-verto \ > --disable-rpath >} > >multilib_src_compile() { > emake -j1 >} > >multilib_src_test() { > multilib_is_native_abi && emake -j1 check >} > >multilib_src_install() { > emake \ > DESTDIR="${D}" \ > EXAMPLEDIR="${EPREFIX}/usr/share/doc/${PF}/examples" \ > install >} > >multilib_src_install_all() { > # default database dir > keepdir /var/lib/krb5kdc > > cd .. > dodoc README > > if use doc; then > dodoc -r doc/html > docinto pdf > dodoc doc/pdf/*.pdf > fi > > newinitd "${FILESDIR}"/mit-krb5kadmind.initd-r2 mit-krb5kadmind > newinitd "${FILESDIR}"/mit-krb5kdc.initd-r2 mit-krb5kdc > newinitd "${FILESDIR}"/mit-krb5kpropd.initd-r2 mit-krb5kpropd > newconfd "${FILESDIR}"/mit-krb5kadmind.confd mit-krb5kadmind > newconfd "${FILESDIR}"/mit-krb5kdc.confd mit-krb5kdc > newconfd "${FILESDIR}"/mit-krb5kpropd.confd mit-krb5kpropd > > systemd_newunit "${FILESDIR}"/mit-krb5kadmind.service mit-krb5kadmind.service > systemd_newunit "${FILESDIR}"/mit-krb5kdc.service mit-krb5kdc.service > systemd_newunit "${FILESDIR}"/mit-krb5kpropd.service mit-krb5kpropd.service > systemd_newunit "${FILESDIR}"/mit-krb5kpropd_at.service "mit-krb5kpropd@.service" > systemd_newunit "${FILESDIR}"/mit-krb5kpropd.socket mit-krb5kpropd.socket > > insinto /etc > newins "${ED}/usr/share/doc/${PF}/examples/krb5.conf" krb5.conf.example > insinto /var/lib/krb5kdc > newins "${ED}/usr/share/doc/${PF}/examples/kdc.conf" kdc.conf.example > > if use openldap ; then > insinto /etc/openldap/schema > doins "${S}/plugins/kdb/ldap/libkdb_ldap/kerberos.schema" > fi > > if use xinetd ; then > insinto /etc/xinetd.d > newins "${FILESDIR}/kpropd.xinetd" kpropd > fi >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 669018
:
551858
|
551862
|
551864
|
552208