diff options
author | Sven Vermeulen <swift@gentoo.org> | 2014-06-02 19:17:53 +0000 |
---|---|---|
committer | Sven Vermeulen <swift@gentoo.org> | 2014-06-02 19:17:53 +0000 |
commit | a4985f6cec1b529bbdc35b79b9c96e8e3d307aa1 (patch) | |
tree | bb7e7c18b896f1e9f495f0383d9c97a114273743 /dev-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-a4985f6cec1b529bbdc35b79b9c96e8e3d307aa1.tar.gz gentoo-2-a4985f6cec1b529bbdc35b79b9c96e8e3d307aa1.tar.bz2 gentoo-2-a4985f6cec1b529bbdc35b79b9c96e8e3d307aa1.zip |
Update multilib support in ustr with many thanks to Arfrever
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2EDD52403B68AF47)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/ustr/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/ustr/ustr-1.0.4-r5.ebuild | 66 |
2 files changed, 72 insertions, 1 deletions
diff --git a/dev-libs/ustr/ChangeLog b/dev-libs/ustr/ChangeLog index 303bb1679edc..add80c4607b8 100644 --- a/dev-libs/ustr/ChangeLog +++ b/dev-libs/ustr/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/ustr # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.14 2014/05/30 13:59:12 swift Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.15 2014/06/02 19:17:53 swift Exp $ + +*ustr-1.0.4-r5 (02 Jun 2014) + + 02 Jun 2014; Sven Vermeulen <swift@gentoo.org> +ustr-1.0.4-r5.ebuild: + Update multilib support in ustr with many thanks to Arfrever *ustr-1.0.4-r4 (30 May 2014) diff --git a/dev-libs/ustr/ustr-1.0.4-r5.ebuild b/dev-libs/ustr/ustr-1.0.4-r5.ebuild new file mode 100644 index 000000000000..ced3fed40aa0 --- /dev/null +++ b/dev-libs/ustr/ustr-1.0.4-r5.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r5.ebuild,v 1.1 2014/06/02 19:17:53 swift Exp $ + +EAPI=5 + +inherit toolchain-funcs multilib-minimal + +DESCRIPTION="Low-overhead managed string library for C" +HOMEPAGE="http://www.and.org/ustr" +SRC_URI="ftp://ftp.and.org/pub/james/ustr/${PV}/${P}.tar.bz2" + +LICENSE="|| ( BSD-2 MIT LGPL-2 )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +DOCS=(ChangeLog README README-DEVELOPERS AUTHORS NEWS TODO) + +MULTILIB_WRAPPED_HEADERS=( + /usr/include/ustr-conf.h + /usr/include/ustr-conf-debug.h +) + +src_prepare() { + multilib_copy_sources +} + +multilib_src_compile() { + emake \ + AR="$(tc-getAR)" \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + prefix="${EPREFIX}/usr" \ + SHRDIR="/usr/share/${P}" \ + HIDE= \ + all-shared +} + +multilib_src_install() { + emake \ + DESTDIR="${D}" \ + prefix="${EPREFIX}/usr" \ + libdir="${EPREFIX}/usr/$(get_libdir)" \ + mandir="/usr/share/man" \ + SHRDIR="/usr/share/${P}" \ + DOCSHRDIR="/usr/share/doc/${PF}" \ + HIDE= \ + install +} + +multilib_src_test() { + emake \ + AR="$(tc-getAR)" \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + prefix="${EPREFIX}/usr" \ + SHRDIR="/usr/share/${P}" \ + HIDE= \ + check +} |