summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Junghans <ottxor@gentoo.org>2014-01-17 15:56:33 +0000
committerChristoph Junghans <ottxor@gentoo.org>2014-01-17 15:56:33 +0000
commit0960cb8f5748b977a766d5fc5626e700a5136d2a (patch)
tree67ff42f26b7a6d72dbb8fc1f2ae4a6c6f06fe711 /sys-libs
parentStable for HPPA (bug #497838). (diff)
downloadgentoo-2-0960cb8f5748b977a766d5fc5626e700a5136d2a.tar.gz
gentoo-2-0960cb8f5748b977a766d5fc5626e700a5136d2a.tar.bz2
gentoo-2-0960cb8f5748b977a766d5fc5626e700a5136d2a.zip
added prefix support (bug #498212)
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/e2fsprogs-libs/ChangeLog6
-rw-r--r--sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.9.ebuild16
2 files changed, 9 insertions, 13 deletions
diff --git a/sys-libs/e2fsprogs-libs/ChangeLog b/sys-libs/e2fsprogs-libs/ChangeLog
index ce22a56cbde0..a9a453d539ed 100644
--- a/sys-libs/e2fsprogs-libs/ChangeLog
+++ b/sys-libs/e2fsprogs-libs/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/e2fsprogs-libs
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/ChangeLog,v 1.111 2014/01/17 06:18:38 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/ChangeLog,v 1.112 2014/01/17 15:56:33 ottxor Exp $
+
+ 17 Jan 2014; Christoph Junghans <ottxor@gentoo.org>
+ e2fsprogs-libs-1.42.9.ebuild:
+ added prefix support (bug #498212)
17 Jan 2014; Mike Frysinger <vapier@gentoo.org> e2fsprogs-libs-1.42.7.ebuild:
Mark m68k stable.
diff --git a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.9.ebuild b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.9.ebuild
index 6599d8c041dd..bf2a09c29bcf 100644
--- a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.9.ebuild
+++ b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.9.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.9.ebuild,v 1.1 2013/12/31 19:07:47 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.9.ebuild,v 1.2 2014/01/17 15:56:33 ottxor Exp $
EAPI="4"
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/e2fsprogs/${PN}-${UP_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~m68k-mint ~x86-solaris"
IUSE="nls static-libs"
RDEPEND="!sys-libs/com_err
@@ -38,14 +38,6 @@ src_prepare() {
}
multilib_src_configure() {
- # We want to use the "bsd" libraries while building on Darwin, but while
- # building on other Gentoo/*BSD we prefer elf-naming scheme.
- local libtype
- case ${CHOST} in
- *-darwin*) libtype=bsd;;
- *) libtype=elf;;
- esac
-
# we use blkid/uuid from util-linux now
ac_cv_lib_uuid_uuid_generate=yes \
ac_cv_lib_blkid_blkid_get_cache=yes \
@@ -54,7 +46,7 @@ multilib_src_configure() {
econf \
--disable-lib{blkid,uuid} \
--disable-quota \
- --enable-${libtype}-shlibs \
+ $(tc-is-static-only || echo --enable-elf-shlibs) \
$(tc-has-tls || echo --disable-tls) \
$(use_enable nls)
}