From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 698D1138334 for ; Sun, 3 Mar 2019 11:50:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B59EE087F; Sun, 3 Mar 2019 11:50:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 631D8E087F for ; Sun, 3 Mar 2019 11:50:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2080C335CF4 for ; Sun, 3 Mar 2019 11:50:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BEA60542 for ; Sun, 3 Mar 2019 11:49:58 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1551613786.0e8bbfc4248ae7863747ce38a0dcda86830c2327.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libasyncns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libasyncns/libasyncns-0.8-r3.ebuild X-VCS-Directories: net-libs/libasyncns/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 0e8bbfc4248ae7863747ce38a0dcda86830c2327 X-VCS-Branch: master Date: Sun, 3 Mar 2019 11:49:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c0c18229-d2ea-421e-a542-2bb26d4bedaa X-Archives-Hash: ab3f36b41da33c508ef58b31141e6021 commit: 0e8bbfc4248ae7863747ce38a0dcda86830c2327 Author: Pacho Ramos gentoo org> AuthorDate: Sun Mar 3 11:49:46 2019 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Mar 3 11:49:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e8bbfc4 net-libs/libasyncns: Drop old Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Pacho Ramos gentoo.org> net-libs/libasyncns/libasyncns-0.8-r3.ebuild | 59 ---------------------------- 1 file changed, 59 deletions(-) diff --git a/net-libs/libasyncns/libasyncns-0.8-r3.ebuild b/net-libs/libasyncns/libasyncns-0.8-r3.ebuild deleted file mode 100644 index 6cc4ce9577e..00000000000 --- a/net-libs/libasyncns/libasyncns-0.8-r3.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils flag-o-matic libtool multilib multilib-minimal - -DESCRIPTION="C library for executing name service queries asynchronously" -HOMEPAGE="http://0pointer.de/lennart/projects/libasyncns/" -SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz" - -SLOT="0" - -LICENSE="LGPL-2.1" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux" - -IUSE="doc debug" - -RDEPEND="" -DEPEND="doc? ( app-doc/doxygen )" - -src_prepare() { - # fix libdir in pkgconfig file - epatch "${FILESDIR}/${P}-libdir.patch" - elibtoolize -} - -multilib_src_configure() { - # libasyncns uses assert() - use debug || append-cppflags -DNDEBUG - - ECONF_SOURCE=${S} \ - econf \ - --docdir="${EPREFIX}"/usr/share/doc/${PF} \ - --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \ - --disable-dependency-tracking \ - --disable-lynx \ - --disable-static -} - -multilib_src_compile() { - emake || die "emake failed" - - if multilib_is_native_abi && use doc; then - doxygen doxygen/doxygen.conf || die "doxygen failed" - fi -} - -multilib_src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - if multilib_is_native_abi && use doc; then - docinto apidocs - dohtml html/* - fi -} - -multilib_src_install_all() { - find "${D}" -name '*.la' -delete -}