* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2016-06-14 2:29 Yixun Lan
0 siblings, 0 replies; 10+ messages in thread
From: Yixun Lan @ 2016-06-14 2:29 UTC (permalink / raw
To: gentoo-commits
commit: 99254a1861c03293606064abb7a5b50a56a4a010
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 14 02:17:52 2016 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Jun 14 02:17:52 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99254a18
dev-libs/eb: keyword ~arm
requested by app-i18n/uim
Gentoo-Bug: 585670
Package-Manager: portage-2.3.0_rc1
dev-libs/eb/eb-4.4.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/eb/eb-4.4.1-r1.ebuild b/dev-libs/eb/eb-4.4.1-r1.ebuild
index a7d1c5d..0c40750 100644
--- a/dev-libs/eb/eb-4.4.1-r1.ebuild
+++ b/dev-libs/eb/eb-4.4.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.lzma"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86"
IUSE="ipv6 linguas_ja threads"
RDEPEND="
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2016-06-27 12:44 Ulrich Müller
0 siblings, 0 replies; 10+ messages in thread
From: Ulrich Müller @ 2016-06-27 12:44 UTC (permalink / raw
To: gentoo-commits
commit: 41a60e895643121d4c25cc555d2d0003a1d758e3
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 27 08:37:42 2016 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Jun 27 12:43:49 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41a60e89
dev-libs/eb: Use the nls flag rather than linguas_ja to enable NLS.
Also use nls for conditional dependencies on gettext and libintl.
Package-Manager: portage-2.3.0
dev-libs/eb/eb-4.4.1-r1.ebuild | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/dev-libs/eb/eb-4.4.1-r1.ebuild b/dev-libs/eb/eb-4.4.1-r1.ebuild
index 0c40750..6609303 100644
--- a/dev-libs/eb/eb-4.4.1-r1.ebuild
+++ b/dev-libs/eb/eb-4.4.1-r1.ebuild
@@ -7,19 +7,19 @@ EAPI=5
DESCRIPTION="EB is a C library and utilities for accessing CD-ROM books"
HOMEPAGE="http://www.sra.co.jp/people/m-kasahr/eb/"
SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.lzma"
-LICENSE="BSD"
+LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86"
-IUSE="ipv6 linguas_ja threads"
+IUSE="ipv6 nls threads"
RDEPEND="
sys-libs/zlib
- linguas_ja? ( virtual/libintl )
+ nls? ( virtual/libintl )
"
DEPEND="
${RDEPEND}
- linguas_ja? ( sys-devel/gettext )
+ nls? ( sys-devel/gettext )
"
DOCS=( AUTHORS ChangeLog{,.0,.1,.2} NEWS README )
@@ -27,7 +27,7 @@ DOCS=( AUTHORS ChangeLog{,.0,.1,.2} NEWS README )
src_configure() {
econf \
$(use_enable ipv6) \
- $(use_enable linguas_ja nls) \
+ $(use_enable nls) \
$(use_enable threads pthread) \
--with-pkgdocdir=/usr/share/doc/${PF}/html
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2021-02-27 5:16 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-02-27 5:16 UTC (permalink / raw
To: gentoo-commits
commit: c38fc600296fe05f06698e21f84a7ec40a4d2aec
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Wed Feb 10 13:14:49 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> 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 <kfm <AT> plushkava.net>
Closes: https://bugs.gentoo.org/526716
Signed-off-by: Sam James <sam <AT> 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) \
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2021-09-29 14:12 Yixun Lan
0 siblings, 0 replies; 10+ messages in thread
From: Yixun Lan @ 2021-09-29 14:12 UTC (permalink / raw
To: gentoo-commits
commit: 611b99e975d5c6412e387900abba89c8de7a9d6d
Author: Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Tue Sep 28 06:09:26 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Sep 29 14:11:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611b99e9
dev-libs/eb: keyword 4.4.1-r1 for ~riscv
Signed-off-by: Alex Fan <alexfanqi <AT> yahoo.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
dev-libs/eb/eb-4.4.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/eb/eb-4.4.1-r1.ebuild b/dev-libs/eb/eb-4.4.1-r1.ebuild
index 42e4a85f761..2b14904002e 100644
--- a/dev-libs/eb/eb-4.4.1-r1.ebuild
+++ b/dev-libs/eb/eb-4.4.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.lzma"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
IUSE="ipv6 nls threads"
RDEPEND="
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2024-08-19 19:04 Joonas Niilola
0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2024-08-19 19:04 UTC (permalink / raw
To: gentoo-commits
commit: 0f60d7bc93a2aeffcce2c7e3ee7b1a70e1d516d9
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 19 18:58:14 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Aug 19 19:04:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f60d7bc
dev-libs/eb: destabilize, always enable ipv6 on 4.4.3+
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/eb/eb-4.4.3.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-libs/eb/eb-4.4.3.ebuild b/dev-libs/eb/eb-4.4.3.ebuild
index 47152c89bf66..21c8b4a69be1 100644
--- a/dev-libs/eb/eb-4.4.3.ebuild
+++ b/dev-libs/eb/eb-4.4.3.ebuild
@@ -11,8 +11,8 @@ SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
-IUSE="ipv6 nls threads"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="nls threads"
RDEPEND="
sys-libs/zlib
@@ -34,7 +34,7 @@ src_prepare() {
src_configure() {
local myeconfargs=(
- $(use_enable ipv6)
+ --enable-ipv6
$(use_enable nls)
$(use_enable threads pthread)
--with-pkgdocdir="${EPREFIX}"/usr/share/doc/${PF}/html
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2024-10-31 21:43 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2024-10-31 21:43 UTC (permalink / raw
To: gentoo-commits
commit: 9f4061daa6c391c1b856143eef517330e0766e53
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 31 21:42:48 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 31 21:42:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f4061da
dev-libs/eb: Stabilize 4.4.3 sparc, #942624
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/eb/eb-4.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/eb/eb-4.4.3.ebuild b/dev-libs/eb/eb-4.4.3.ebuild
index 35d116855b06..abfe4e699004 100644
--- a/dev-libs/eb/eb-4.4.3.ebuild
+++ b/dev-libs/eb/eb-4.4.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv sparc ~x86"
IUSE="nls threads"
RDEPEND="
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2024-11-01 2:55 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2024-11-01 2:55 UTC (permalink / raw
To: gentoo-commits
commit: 334b3fc39b2d1df4f0c33d0e8c25ad5e0ff677dd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 1 02:54:39 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 1 02:54:39 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=334b3fc3
dev-libs/eb: Stabilize 4.4.3 ppc64, #942624
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/eb/eb-4.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/eb/eb-4.4.3.ebuild b/dev-libs/eb/eb-4.4.3.ebuild
index abfe4e699004..a83d5da1dade 100644
--- a/dev-libs/eb/eb-4.4.3.ebuild
+++ b/dev-libs/eb/eb-4.4.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ppc64 ~riscv sparc ~x86"
IUSE="nls threads"
RDEPEND="
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2024-11-01 2:55 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2024-11-01 2:55 UTC (permalink / raw
To: gentoo-commits
commit: e8612d0286503e958aafc3610e10b0627e67372d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 1 02:54:41 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 1 02:54:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8612d02
dev-libs/eb: Stabilize 4.4.3 ppc, #942624
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/eb/eb-4.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/eb/eb-4.4.3.ebuild b/dev-libs/eb/eb-4.4.3.ebuild
index a83d5da1dade..da4ce6b891d2 100644
--- a/dev-libs/eb/eb-4.4.3.ebuild
+++ b/dev-libs/eb/eb-4.4.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ppc ppc64 ~riscv sparc ~x86"
IUSE="nls threads"
RDEPEND="
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2024-11-01 2:55 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2024-11-01 2:55 UTC (permalink / raw
To: gentoo-commits
commit: be68067ba88f298a002d535178da4351086dc61f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 1 02:54:42 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 1 02:54:42 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be68067b
dev-libs/eb: Stabilize 4.4.3 amd64, #942624
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/eb/eb-4.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/eb/eb-4.4.3.ebuild b/dev-libs/eb/eb-4.4.3.ebuild
index da4ce6b891d2..5126f0947181 100644
--- a/dev-libs/eb/eb-4.4.3.ebuild
+++ b/dev-libs/eb/eb-4.4.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~riscv sparc ~x86"
IUSE="nls threads"
RDEPEND="
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
@ 2024-11-01 3:36 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2024-11-01 3:36 UTC (permalink / raw
To: gentoo-commits
commit: 9b6c2290d45cf7e89077969284f1f0cf05ecfcbe
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 1 03:35:51 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 1 03:35:51 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b6c2290
dev-libs/eb: Stabilize 4.4.3 x86, #942624
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/eb/eb-4.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/eb/eb-4.4.3.ebuild b/dev-libs/eb/eb-4.4.3.ebuild
index 5126f0947181..a338861e0336 100644
--- a/dev-libs/eb/eb-4.4.3.ebuild
+++ b/dev-libs/eb/eb-4.4.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~riscv sparc x86"
IUSE="nls threads"
RDEPEND="
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-11-01 3:36 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-19 19:04 [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2024-11-01 3:36 Sam James
2024-11-01 2:55 Sam James
2024-11-01 2:55 Sam James
2024-11-01 2:55 Sam James
2024-10-31 21:43 Sam James
2021-09-29 14:12 Yixun Lan
2021-02-27 5:16 Sam James
2016-06-27 12:44 Ulrich Müller
2016-06-14 2:29 Yixun Lan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox