Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
Date: Sat, 27 Feb 2021 05:16:29
Message-Id: 1614401093.c38fc600296fe05f06698e21f84a7ec40a4d2aec.sam@gentoo
1 commit: c38fc600296fe05f06698e21f84a7ec40a4d2aec
2 Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
3 AuthorDate: Wed Feb 10 13:14:49 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 04:44:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38fc600
7
8 dev-libs/eb: Allow build with non-bash
9
10 Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
11 Closes: https://bugs.gentoo.org/526716
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 dev-libs/eb/eb-4.4.1-r1.ebuild | 9 ++++++++-
15 1 file changed, 8 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-libs/eb/eb-4.4.1-r1.ebuild b/dev-libs/eb/eb-4.4.1-r1.ebuild
18 index 2caae076012..42e4a85f761 100644
19 --- a/dev-libs/eb/eb-4.4.1-r1.ebuild
20 +++ b/dev-libs/eb/eb-4.4.1-r1.ebuild
21 @@ -3,8 +3,10 @@
22
23 EAPI=7
24
25 +inherit autotools
26 +
27 DESCRIPTION="EB is a C library and utilities for accessing CD-ROM books"
28 -HOMEPAGE="http://www.sra.co.jp/people/m-kasahr/eb/"
29 +HOMEPAGE="https://web.archive.org/web/20120330123930/http://www.sra.co.jp/people/m-kasahr/eb/"
30 SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.lzma"
31
32 LICENSE="BSD"
33 @@ -20,6 +22,11 @@ BDEPEND="nls? ( sys-devel/gettext )"
34
35 DOCS=( AUTHORS ChangeLog{,.0,.1,.2} NEWS README )
36
37 +src_prepare() {
38 + default
39 + eautoreconf
40 +}
41 +
42 src_configure() {
43 econf \
44 $(use_enable ipv6) \