axs 14/03/10 16:30:06 Modified: ChangeLog Added: jemalloc-3.5.1-r1.ebuild Log: added multilib-build version (bug 503628), thanks to grknight (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)
Revision Changes Path 1.37 dev-libs/jemalloc/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?rev=1.37&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?rev=1.37&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/ChangeLog?r1=1.36&r2=1.37 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v retrieving revision 1.36 retrieving revision 1.37 diff -u -r1.36 -r1.37 --- ChangeLog 10 Mar 2014 14:39:41 -0000 1.36 +++ ChangeLog 10 Mar 2014 16:30:06 -0000 1.37 @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/jemalloc # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.36 2014/03/10 14:39:41 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.37 2014/03/10 16:30:06 axs Exp $ + +*jemalloc-3.5.1-r1 (10 Mar 2014) + + 10 Mar 2014; Ian Stakenvicius (_AxS_) <[email protected]> + +jemalloc-3.5.1-r1.ebuild: + added multilib-build version (bug 503628), thanks to grknight *jemalloc-3.5.1 (10 Mar 2014) 1.1 dev-libs/jemalloc/jemalloc-3.5.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/jemalloc-3.5.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/jemalloc/jemalloc-3.5.1-r1.ebuild?rev=1.1&content-type=text/plain Index: jemalloc-3.5.1-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-3.5.1-r1.ebuild,v 1.1 2014/03/10 16:30:06 axs Exp $ EAPI=5 inherit autotools-multilib eutils DESCRIPTION="Jemalloc is a general-purpose scalable concurrent allocator" HOMEPAGE="http://www.canonware.com/jemalloc/" SRC_URI="http://www.canonware.com/download/${PN}/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~x64-macos" IUSE="debug static-libs stats" HTML_DOCS=( doc/jemalloc.html ) PATCHES=( "${FILESDIR}/${PN}-3.5.1-strip-optimization.patch" "${FILESDIR}/${PN}-3.5.1-no-pprof.patch" "${FILESDIR}/${PN}-3.5.1_fix_html_install.patch" ) MULTILIB_WRAPPED_HEADERS=( /usr/include/jemalloc/jemalloc.h ) # autotools-utils.eclass auto-adds configure options when static-libs is in IUSE # but jemalloc doesn't implement them in its configure; need this here to # supress the warnings until automagic is removed from the eclass QA_CONFIGURE_OPTIONS="--enable-static --disable-static --enable-shared --disable-shared" src_configure() { myeconfargs=( $(use_enable debug) $(use_enable stats) ) autotools-multilib_src_configure } src_install() { autotools-multilib_src_install if [[ ${CHOST} == *-darwin* ]] ; then # fixup install_name, #437362 install_name_tool \ -id "${EPREFIX}"/usr/$(get_libdir)/libjemalloc.1.dylib \ "${ED}"/usr/$(get_libdir)/libjemalloc.1.dylib || die fi use static-libs || find "${ED}" -name '*.a' -delete }
