diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-12 19:22:20 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-12 19:22:20 +0000 |
commit | 630bf022e19cc92e4d58e9f35d141adbb9b1b565 (patch) | |
tree | 8efa9a820c47409c39e9af21566b02f36e0d257b /dev-libs/yajl | |
parent | arm stable, bug #356387 (diff) | |
download | gentoo-2-630bf022e19cc92e4d58e9f35d141adbb9b1b565.tar.gz gentoo-2-630bf022e19cc92e4d58e9f35d141adbb9b1b565.tar.bz2 gentoo-2-630bf022e19cc92e4d58e9f35d141adbb9b1b565.zip |
If we build static libraries, we should also install them.
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/yajl')
-rw-r--r-- | dev-libs/yajl/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/yajl/yajl-2.0.3.ebuild | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/dev-libs/yajl/ChangeLog b/dev-libs/yajl/ChangeLog index c794c051d713..94f6343c0656 100644 --- a/dev-libs/yajl/ChangeLog +++ b/dev-libs/yajl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/yajl # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/yajl/ChangeLog,v 1.19 2012/03/07 14:12:53 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/yajl/ChangeLog,v 1.20 2012/03/12 19:22:20 ssuominen Exp $ + + 12 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> yajl-2.0.3.ebuild: + If we build static libraries, we should also install them. 07 Mar 2012; Naohiro Aota <naota@gentoo.org> yajl-2.0.3.ebuild: Add ~x86-fbsd. diff --git a/dev-libs/yajl/yajl-2.0.3.ebuild b/dev-libs/yajl/yajl-2.0.3.ebuild index f720a508282f..82747bac2f47 100644 --- a/dev-libs/yajl/yajl-2.0.3.ebuild +++ b/dev-libs/yajl/yajl-2.0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/yajl/yajl-2.0.3.ebuild,v 1.3 2012/03/07 14:12:53 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/yajl/yajl-2.0.3.ebuild,v 1.4 2012/03/12 19:22:20 ssuominen Exp $ EAPI=4 @@ -13,8 +13,7 @@ SRC_URI="http://github.com/lloyd/yajl/tarball/${PV} -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -IUSE="static-libs" +IUSE="" PATCHES=( "${FILESDIR}"/${PN}-fix_static_linking.patch @@ -31,5 +30,4 @@ src_test() { src_install() { cmake-utils_src_install - use static-libs || find "${ED}" -name '*.a' -exec rm -f {} + } |