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 90329138335 for ; Fri, 3 Jan 2020 19:08:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58862E094B; Fri, 3 Jan 2020 19:08:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 32B7BE094B for ; Fri, 3 Jan 2020 19:08:16 +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 C749734DE05 for ; Fri, 3 Jan 2020 19:08:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 846E542 for ; Fri, 3 Jan 2020 19:08:13 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1578077617.a82c1d74fab751a318cd0efce9c90a6036935125.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/9libs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/9libs/9libs-1.0-r3.ebuild X-VCS-Directories: dev-libs/9libs/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a82c1d74fab751a318cd0efce9c90a6036935125 X-VCS-Branch: master Date: Fri, 3 Jan 2020 19:08:13 +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: 32c79bed-0c61-4771-b5af-f855a22fffa2 X-Archives-Hash: a08980218cd4de5a5a77b8b4b51e16b0 commit: a82c1d74fab751a318cd0efce9c90a6036935125 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jan 3 18:44:52 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jan 3 18:53:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a82c1d74 dev-libs/9libs: Drop 1.0-r3 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/9libs/9libs-1.0-r3.ebuild | 43 -------------------------------------- 1 file changed, 43 deletions(-) diff --git a/dev-libs/9libs/9libs-1.0-r3.ebuild b/dev-libs/9libs/9libs-1.0-r3.ebuild deleted file mode 100644 index 22450aa79db..00000000000 --- a/dev-libs/9libs/9libs-1.0-r3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="A package of Plan 9 compatibility libraries" -HOMEPAGE="https://www.netlib.org/research/9libs/9libs-1.0.README" -SRC_URI="https://www.netlib.org/research/9libs/${P}.tar.bz2" - -LICENSE="PLAN9" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=" - >=x11-libs/libX11-1.0.0 - >=x11-libs/libXt-1.0.0" -RDEPEND="${DEPEND}" - -src_prepare() { - # Bug 385387 - epatch "${FILESDIR}/${PN}-va_list.patch" -} - -src_configure() { - tc-export CC - econf \ - --includedir=/usr/include/9libs \ - --enable-shared -} - -src_install() { - make install DESTDIR="${D}" - dodoc README - - # rename some man pages to avoid collisions with dev-libs/libevent - local f - for f in add balloc bitblt cachechars event frame graphics rgbpix; do - mv "${D}"/usr/share/man/man3/${f}.{3,3g} || die - done -}