diff options
author | William Hubbs <williamh@gentoo.org> | 2011-11-18 18:25:24 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2011-11-18 18:25:24 +0000 |
commit | 07a4c487592127f6a78a0e2bfb3f8b83dc06761f (patch) | |
tree | 4ff9a0a84ba98117eb06a79a19f5ffc160cb5536 /sys-apps/openrc | |
parent | Avoid using parallel make for install, as it has race conditions. (diff) | |
download | gentoo-2-07a4c487592127f6a78a0e2bfb3f8b83dc06761f.tar.gz gentoo-2-07a4c487592127f6a78a0e2bfb3f8b83dc06761f.tar.bz2 gentoo-2-07a4c487592127f6a78a0e2bfb3f8b83dc06761f.zip |
Add static-libs use flag for bug #378267
(Portage version: 2.2.0_alpha75/cvs/Linux i686)
Diffstat (limited to 'sys-apps/openrc')
-rw-r--r-- | sys-apps/openrc/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/openrc/openrc-9999.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/sys-apps/openrc/ChangeLog b/sys-apps/openrc/ChangeLog index d9594b869057..7b2d3b6baba6 100644 --- a/sys-apps/openrc/ChangeLog +++ b/sys-apps/openrc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/openrc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v 1.173 2011/11/16 19:50:05 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v 1.174 2011/11/18 18:25:24 williamh Exp $ + + 18 Nov 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild: + Add static-libs use flag for bug #378267 16 Nov 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild: Since oldnet is now the default upstream, we do not need to force this diff --git a/sys-apps/openrc/openrc-9999.ebuild b/sys-apps/openrc/openrc-9999.ebuild index ab7fe7a61014..e5cf5e4e91f0 100644 --- a/sys-apps/openrc/openrc-9999.ebuild +++ b/sys-apps/openrc/openrc-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.89 2011/11/16 19:50:05 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.90 2011/11/18 18:25:24 williamh Exp $ EAPI=4 @@ -18,7 +18,8 @@ fi LICENSE="BSD-2" SLOT="0" -IUSE="debug elibc_glibc ncurses pam selinux unicode kernel_linux kernel_FreeBSD" +IUSE="debug elibc_glibc ncurses pam selinux unicode kernel_linux kernel_FreeBSD + static-libs" RDEPEND="virtual/init kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc sys-process/fuser-bsd ) ) @@ -49,6 +50,9 @@ make_args() { MAKE_ARGS="${MAKE_ARGS} MKSELINUX=yes" fi export BRANDING="Gentoo ${brand}" + if ! use static-libs; then + MAKE_ARGS="${MAKE_ARGS} MKSTATICLIBS=no" + fi } pkg_setup() { |