From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libintl/
Date: Fri, 10 Jun 2016 06:50:19 +0000 (UTC) [thread overview]
Message-ID: <1465541410.8ef5292ca8646a4317cb6b3d19d29faa92dac1f0.polynomial-c@gentoo> (raw)
commit: 8ef5292ca8646a4317cb6b3d19d29faa92dac1f0
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 10 06:42:37 2016 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Jun 10 06:50:10 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ef5292c
dev-libs/libintl: Bump to version 0.19.8
Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
dev-libs/libintl/Manifest | 1 +
dev-libs/libintl/libintl-0.19.8.ebuild | 77 ++++++++++++++++++++++++++++++++++
2 files changed, 78 insertions(+)
diff --git a/dev-libs/libintl/Manifest b/dev-libs/libintl/Manifest
index 818c1c5..2736a31 100644
--- a/dev-libs/libintl/Manifest
+++ b/dev-libs/libintl/Manifest
@@ -1,2 +1,3 @@
DIST gettext-0.19.6.tar.gz 18619659 SHA256 ed4b4c19bd3a3034eb6769500a3592ff616759ef43cf30586dbb7a17c9dd695d SHA512 46adfd4a6d0038aba999658bebe51117e3ab3dc149a9054c1087d3e79ec7ba3371a7e78a8ca30a8872d162c2dc44aba6e67e4d64808c4f92e1e2bd674174f1db WHIRLPOOL 1988f9ddfd603734b4a632291925c8e5b31e7384eea1c6641d52aa58cb6b8f892e7664dd145a53435b7d2a4540ac65aeae1cb528a004c35832087c2820dafbcb
DIST gettext-0.19.7.tar.gz 19235781 SHA256 5386d2a40500295783c6a52121adcf42a25519e2d23675950619c9e69558c23f SHA512 7ba89074d3eddd0b4a5e2980e1ec74b53c49b7a04a1fa91c70c4bc11ce9c30415e4df9d79698148eaaed325fb4feb25a340a2e8e01fbe86b1a66b1376a4c9e3d WHIRLPOOL eb51c4be7c0a92c5c33c16329003e21947e0b9d1583c4a785ae6836f81273ea7ec2823a0a28ae81c3b977f2148c0f3bd524949484383ff87510e1d2bc642a786
+DIST gettext-0.19.8.tar.gz 19977131 SHA256 3da4f6bd79685648ecf46dab51d66fcdddc156f41ed07e580a696a38ac61d48f SHA512 6d169ea1c0a2a39a7df6f65a372f1729a1fab94ab6b0cf04fd7fd7371eff1f409c433ea5ec3a8e39105d1eeea2ebbbbcd59433367ec2510ed4b59cecca4dd2e5 WHIRLPOOL ce4b1e8096d504d22c857d5eefb05b4c84a70918ff3710675550d997f80567713179a5013de16055ec5495db3f468c983e8b9ca6fcafce1efd41bfdb69de9267
diff --git a/dev-libs/libintl/libintl-0.19.8.ebuild b/dev-libs/libintl/libintl-0.19.8.ebuild
new file mode 100644
index 0000000..a3cf14c
--- /dev/null
+++ b/dev-libs/libintl/libintl-0.19.8.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# Note: Keep version bumps in sync with sys-devel/gettext.
+
+EAPI="5"
+
+MY_P="gettext-${PV}"
+
+inherit multilib-minimal toolchain-funcs libtool
+
+DESCRIPTION="the GNU international library (split out of gettext)"
+HOMEPAGE="https://www.gnu.org/software/gettext/"
+SRC_URI="mirror://gnu/gettext/${MY_P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+IUSE="static-libs +threads"
+
+DEPEND=">=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]"
+# Block C libraries known to provide libintl.
+RDEPEND="${DEPEND}
+ !sys-libs/glibc
+ !sys-libs/musl
+ !<sys-devel/gettext-0.19.6-r1"
+
+S="${WORKDIR}/${MY_P}/gettext-runtime"
+
+src_prepare() {
+ # The libtool files are stored higher up, so make sure we run in the
+ # whole tree and not just the subdir we build.
+ elibtoolize "${WORKDIR}"
+}
+
+multilib_src_configure() {
+ local myconf=(
+ # Emacs support is now in a separate package.
+ --without-emacs
+ --without-lispdir
+ # Normally this controls nls behavior in general, but the libintl
+ # subdir is skipped unless this is explicitly set. ugh.
+ --enable-nls
+ # This magic flag enables libintl.
+ --with-included-gettext
+ # The gettext package provides this library.
+ --disable-c++
+ --disable-libasprintf
+ # No java until someone cares.
+ --disable-java
+
+ $(use_enable static-libs static)
+ $(use_enable threads)
+ )
+ ECONF_SOURCE=${S} econf "${myconf[@]}"
+}
+
+multilib_src_compile() {
+ # We only need things in the intl/ subdir.
+ emake -C intl
+}
+
+multilib_src_install() {
+ # We only need things in the intl/ subdir.
+ emake DESTDIR="${D}" install -C intl
+
+ gen_usr_ldscript -a intl
+}
+
+multilib_src_install_all() {
+ use static-libs || prune_libtool_files --all
+
+ rm -f "${ED}"/usr/share/locale/locale.alias "${ED}"/usr/lib/charset.alias
+
+ dodoc AUTHORS ChangeLog NEWS README
+}
next reply other threads:[~2016-06-10 6:50 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-10 6:50 Lars Wendler [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-09 7:15 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libintl/ Sam James
2025-02-09 6:10 Sam James
2024-12-09 10:56 Arthur Zamarin
2024-12-03 11:14 Sam James
2024-10-05 14:32 Arthur Zamarin
2024-10-05 14:32 Arthur Zamarin
2024-10-05 14:32 Arthur Zamarin
2024-10-05 14:32 Arthur Zamarin
2024-10-05 14:32 Arthur Zamarin
2024-10-05 14:32 Arthur Zamarin
2024-02-22 6:58 Sam James
2024-02-02 4:21 Ionen Wolkens
2024-02-02 4:21 Ionen Wolkens
2024-02-02 4:21 Ionen Wolkens
2024-02-02 4:21 Ionen Wolkens
2024-01-18 8:06 Florian Schmaus
2024-01-03 2:20 Ionen Wolkens
2023-12-28 4:04 Sam James
2023-12-21 0:07 Ionen Wolkens
2023-12-19 5:19 Sam James
2023-11-20 8:24 Sam James
2023-10-06 3:14 Sam James
2023-09-21 13:15 Sam James
2023-09-19 9:06 Sam James
2023-07-08 15:22 Benda XU
2023-06-19 22:06 Sam James
2023-02-26 22:23 Sam James
2022-12-26 8:35 Sam James
2022-12-02 7:25 Arthur Zamarin
2022-12-02 7:25 Arthur Zamarin
2022-11-25 9:52 Arthur Zamarin
2022-11-25 9:52 Arthur Zamarin
2022-11-25 9:52 Arthur Zamarin
2022-11-25 9:52 Arthur Zamarin
2022-05-30 2:49 Sam James
2022-04-09 2:35 Sam James
2022-04-07 0:46 Sam James
2021-02-15 9:03 Andreas Sturmlechner
2020-12-27 14:21 Fabian Groffen
2020-12-02 22:39 Sam James
2020-08-31 20:28 Sam James
2020-08-31 19:58 Sam James
2020-08-31 19:55 Sam James
2020-08-31 19:51 Sam James
2020-08-31 19:50 Sam James
2020-08-31 19:49 Sam James
2020-08-31 19:45 Sam James
2020-08-31 19:40 Sam James
2020-08-31 19:37 Sam James
2020-08-30 1:32 Thomas Deutschmann
2020-08-14 22:23 Sam James
2020-07-27 7:46 Lars Wendler
2020-07-23 21:52 Sam James
2019-12-28 15:40 Mikle Kolyada
2019-07-29 23:29 Aaron Bauman
2019-07-23 21:25 Sergei Trofimovich
2019-07-22 13:51 Mikle Kolyada
2019-07-22 13:51 Mikle Kolyada
2019-07-22 13:51 Mikle Kolyada
2019-07-02 8:19 Sergei Trofimovich
2019-06-05 13:46 Agostino Sarubbo
2019-05-16 23:56 Thomas Deutschmann
2019-05-15 14:54 Mikle Kolyada
2019-05-14 11:24 Lars Wendler
2016-06-15 14:14 Mike Frysinger
2016-06-12 9:46 Lars Wendler
2016-06-11 7:14 Jeroen Roovers
2016-06-11 7:05 Jeroen Roovers
2016-06-04 16:37 Anthony G. Basile
2016-06-01 15:13 Tobias Klausmann
2016-05-31 17:33 Anthony G. Basile
2016-05-31 17:17 Anthony G. Basile
2016-01-28 22:35 Mike Frysinger
2016-01-05 19:27 Fabian Groffen
2015-10-13 0:54 Mike Frysinger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1465541410.8ef5292ca8646a4317cb6b3d19d29faa92dac1f0.polynomial-c@gentoo \
--to=polynomial-c@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox