diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-10-12 19:14:37 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-10-12 20:20:19 -0400 |
commit | 2bb8a68aaa9007e1b4f7437453bcf66de097f524 (patch) | |
tree | 3b950921b413db56f13e223ec4f0083e8761c4a8 /virtual/libintl | |
parent | sys-devel/gettext: respect USE=nls all the time (diff) | |
download | gentoo-2bb8a68aaa9007e1b4f7437453bcf66de097f524.tar.gz gentoo-2bb8a68aaa9007e1b4f7437453bcf66de097f524.tar.bz2 gentoo-2bb8a68aaa9007e1b4f7437453bcf66de097f524.zip |
dev-libs/libiconv: split out from gettext
The gettext ebuild is big and fat and full of tools/deps that are
independent of libintl. Since slimming that down with USE flags
gets ugly fast (it provides multiple libs in addition to tools),
just create a dedicated libintl package.
Diffstat (limited to 'virtual/libintl')
-rw-r--r-- | virtual/libintl/libintl-0-r2.ebuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/virtual/libintl/libintl-0-r2.ebuild b/virtual/libintl/libintl-0-r2.ebuild new file mode 100644 index 000000000000..7a61cb9233d8 --- /dev/null +++ b/virtual/libintl/libintl-0-r2.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit multilib-build + +DESCRIPTION="Virtual for the GNU Internationalization Library" + +LICENSE="" +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 ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="elibc_glibc elibc_musl elibc_uclibc" + +# - Don't put elibc_glibc? ( sys-libs/glibc ) to avoid circular deps between +# that and gcc. And don't force uClibc to dep on this. +RDEPEND="!elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( dev-libs/libiconv[${MULTILIB_USEDEP}] ) ) )" |