diff options
author | 2021-02-10 15:14:49 +0200 | |
---|---|---|
committer | 2021-02-27 04:44:53 +0000 | |
commit | c38fc600296fe05f06698e21f84a7ec40a4d2aec (patch) | |
tree | 5d063587f189758b3b504039129d1e97b37b614c /dev-libs/eb | |
parent | profiles/package.mask: add dev-scheme/greg removal date (diff) | |
download | gentoo-c38fc600296fe05f06698e21f84a7ec40a4d2aec.tar.gz gentoo-c38fc600296fe05f06698e21f84a7ec40a4d2aec.tar.bz2 gentoo-c38fc600296fe05f06698e21f84a7ec40a4d2aec.zip |
dev-libs/eb: Allow build with non-bash
Signed-off-by: Kerin Millar <kfm@plushkava.net>
Closes: https://bugs.gentoo.org/526716
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/eb')
-rw-r--r-- | dev-libs/eb/eb-4.4.1-r1.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dev-libs/eb/eb-4.4.1-r1.ebuild b/dev-libs/eb/eb-4.4.1-r1.ebuild index 2caae076012f..42e4a85f7619 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) \ |