diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-11-03 23:15:49 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-11-03 23:23:07 +0100 |
commit | fa8ba561a9ceccbfca08c7aa4c367e9c938b8e87 (patch) | |
tree | 014b99110f8eac877f025e0d8eed57cdedeba6bf /net-dns | |
parent | net-dns/libidn2: Take it for myself (diff) | |
download | gentoo-fa8ba561a9ceccbfca08c7aa4c367e9c938b8e87.tar.gz gentoo-fa8ba561a9ceccbfca08c7aa4c367e9c938b8e87.tar.bz2 gentoo-fa8ba561a9ceccbfca08c7aa4c367e9c938b8e87.zip |
net-dns/libidn2: Remove the live ebuild
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/libidn2/Manifest | 1 | ||||
-rw-r--r-- | net-dns/libidn2/libidn2-99999.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/net-dns/libidn2/Manifest b/net-dns/libidn2/Manifest index 312cdf2cbb81..dbd184fb2f67 100644 --- a/net-dns/libidn2/Manifest +++ b/net-dns/libidn2/Manifest @@ -1,2 +1 @@ DIST libidn2-2.3.0.tar.gz 2164993 BLAKE2B 3c103831c39fa3fd0340c9c45f3f683483207ade9cadc8d85b046a698f75bbe5ce6829de69a5cb238404d243b7a39ef44d69ea4ea80c22b813eafbacae615a8b SHA512 a2bf6d2249948bce14fbbc802f8af1c9b427fc9bf64203a2f3d7239d8e6061d0a8e7970a23e8e5889110a654a321e0504c7a6d049bb501e7f6a23d42b50b6187 -DIST libunistring-0.9.10.tar.gz 3744814 BLAKE2B 3ddc55b8021c0f4822beb83b807bb21dbbf10bbb866747f64e060df3ab822a4143528855e1ce6a13144630bc8daa14f1fa830db77fb605e57cae21d46de804d6 SHA512 690082732fbbd47ab4ffbd6f21d85afece0f8e2ded24982f949f4ae52bf0a981b75ea9bc14ab289e0954cde07f31a7a4c2bb65615a8eb5b2bfa65720310b6fc9 diff --git a/net-dns/libidn2/libidn2-99999.ebuild b/net-dns/libidn2/libidn2-99999.ebuild deleted file mode 100644 index 8b64b763df11..000000000000 --- a/net-dns/libidn2/libidn2-99999.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools git-r3 multilib-minimal toolchain-funcs - -DESCRIPTION="An implementation of the IDNA2008 specifications (RFCs 5890, 5891, 5892, 5893)" -HOMEPAGE="https://www.gnu.org/software/libidn/#libidn2 https://gitlab.com/libidn/libidn2" -EGIT_REPO_URI="https://gitlab.com/libidn/libidn2.git/" -SRC_URI="mirror://gnu/libunistring/libunistring-0.9.10.tar.gz" - -LICENSE="GPL-2+ LGPL-3+" -SLOT="0/2" -KEYWORDS="" -IUSE="static-libs" - -RDEPEND=" - dev-libs/libunistring[${MULTILIB_USEDEP}] -" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-lang/perl - dev-util/gengetopt - sys-apps/help2man -" -S=${WORKDIR}/${P/a/} - -src_unpack() { - git-r3_src_unpack - unpack ${A} -} - -src_prepare() { - mv "${WORKDIR}"/libunistring-0.9.10 unistring || die - - AUTORECONF=: sh bootstrap \ - --gnulib-srcdir=gnulib --no-bootstrap-sync --no-git --skip-po \ - || die - - default - - eautoreconf - - if [[ ${CHOST} == *-darwin* ]] ; then - # Darwin ar chokes when TMPDIR doesn't exist (as done for some - # reason in the Makefile) - sed -i -e '/^TMPDIR = /d' Makefile.in || die - export TMPDIR="${T}" - fi - - multilib_copy_sources -} - -multilib_src_configure() { - econf \ - CC_FOR_BUILD="$(tc-getBUILD_CC)" \ - $(use_enable static-libs static) \ - --disable-doc \ - --disable-gcc-warnings \ - --disable-gtk-doc -} - -multilib_src_install() { - default - - find "${D}" -name '*.la' -delete || die -} |