summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-01-06 15:56:45 +0000
committerMike Frysinger <vapier@gentoo.org>2014-01-06 15:56:45 +0000
commitba0426861dc36a94528f66f992e4c9c804defa18 (patch)
treed9ad8451c721a429782d118854be9ac051967b31 /dev-libs
parentVersion bump, fixes bug #477002. Drop old (diff)
downloadgentoo-2-ba0426861dc36a94528f66f992e4c9c804defa18.tar.gz
gentoo-2-ba0426861dc36a94528f66f992e4c9c804defa18.tar.bz2
gentoo-2-ba0426861dc36a94528f66f992e4c9c804defa18.zip
Use multilib_build_binaries helper #489580 by Thomas Sachau.
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libpcre/ChangeLog7
-rw-r--r--dev-libs/libpcre/libpcre-8.34.ebuild11
2 files changed, 11 insertions, 7 deletions
diff --git a/dev-libs/libpcre/ChangeLog b/dev-libs/libpcre/ChangeLog
index 5bdadb6ae3d4..7b2c4b2edefa 100644
--- a/dev-libs/libpcre/ChangeLog
+++ b/dev-libs/libpcre/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libpcre
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v 1.226 2013/12/16 03:43:37 radhermit Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v 1.227 2014/01/06 15:56:45 vapier Exp $
+
+ 06 Jan 2014; Mike Frysinger <vapier@gentoo.org> libpcre-8.34.ebuild:
+ Use multilib_build_binaries helper #489580 by Thomas Sachau.
*libpcre-8.34 (16 Dec 2013)
diff --git a/dev-libs/libpcre/libpcre-8.34.ebuild b/dev-libs/libpcre/libpcre-8.34.ebuild
index 4ba4ccbf2595..e1711c4df42a 100644
--- a/dev-libs/libpcre/libpcre-8.34.ebuild
+++ b/dev-libs/libpcre/libpcre-8.34.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/dev-libs/libpcre/libpcre-8.34.ebuild,v 1.1 2013/12/16 03:43:37 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/libpcre-8.34.ebuild,v 1.2 2014/01/06 15:56:45 vapier Exp $
EAPI="4"
@@ -57,8 +57,8 @@ multilib_src_configure() {
$(use_enable jit) $(use_enable jit pcregrep-jit) \
$(use_enable pcre16) \
$(use_enable pcre32) \
- $(multilib_is_native_abi && use_enable libedit pcretest-libedit) \
- $(multilib_is_native_abi && use_enable readline pcretest-libreadline) \
+ $(multilib_build_binaries && use_enable libedit pcretest-libedit) \
+ $(multilib_build_binaries && use_enable readline pcretest-libreadline) \
$(use_enable static-libs static) \
$(use_enable unicode utf) $(use_enable unicode unicode-properties) \
$(multilib_is_native_abi && use_enable zlib pcregrep-libz) \
@@ -75,7 +75,8 @@ multilib_src_compile() {
multilib_src_install() {
emake \
DESTDIR="${D}" \
- $(multilib_is_native_abi || echo "bin_PROGRAMS= dist_html_DATA=") \
+ $(multilib_build_binaries || echo "bin_PROGRAMS=") \
+ $(multilib_is_native_abi || echo "dist_html_DATA=") \
install
multilib_is_native_abi && gen_usr_ldscript -a pcre
}