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 BCB3A1382C5 for ; Sat, 27 Feb 2021 05:16:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9451E088B; Sat, 27 Feb 2021 05:16:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A1DACE0829 for ; Sat, 27 Feb 2021 05:16:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0F9313410F5 for ; Sat, 27 Feb 2021 05:16:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 547C84C6 for ; Sat, 27 Feb 2021 05:16:25 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1614401093.c38fc600296fe05f06698e21f84a7ec40a4d2aec.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/eb/eb-4.4.1-r1.ebuild X-VCS-Directories: dev-libs/eb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c38fc600296fe05f06698e21f84a7ec40a4d2aec X-VCS-Branch: master Date: Sat, 27 Feb 2021 05:16:25 +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: 244d354f-4206-41e7-aa89-db92f4148674 X-Archives-Hash: abc4ea0247b3e2ba83d1eb2e028fe119 commit: c38fc600296fe05f06698e21f84a7ec40a4d2aec Author: Kerin Millar plushkava net> AuthorDate: Wed Feb 10 13:14:49 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 27 04:44:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38fc600 dev-libs/eb: Allow build with non-bash Signed-off-by: Kerin Millar plushkava.net> Closes: https://bugs.gentoo.org/526716 Signed-off-by: Sam James gentoo.org> dev-libs/eb/eb-4.4.1-r1.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-libs/eb/eb-4.4.1-r1.ebuild b/dev-libs/eb/eb-4.4.1-r1.ebuild index 2caae076012..42e4a85f761 100644 --- a/dev-libs/eb/eb-4.4.1-r1.ebuild +++ b/dev-libs/eb/eb-4.4.1-r1.ebuild @@ -3,8 +3,10 @@ EAPI=7 +inherit autotools + DESCRIPTION="EB is a C library and utilities for accessing CD-ROM books" -HOMEPAGE="http://www.sra.co.jp/people/m-kasahr/eb/" +HOMEPAGE="https://web.archive.org/web/20120330123930/http://www.sra.co.jp/people/m-kasahr/eb/" SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.lzma" LICENSE="BSD" @@ -20,6 +22,11 @@ BDEPEND="nls? ( sys-devel/gettext )" DOCS=( AUTHORS ChangeLog{,.0,.1,.2} NEWS README ) +src_prepare() { + default + eautoreconf +} + src_configure() { econf \ $(use_enable ipv6) \