diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-08 10:03:23 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-08 10:03:23 +0000 |
commit | 53b517f7bb53d0bb4f9bbcff8fe1660f477052d1 (patch) | |
tree | 46c1831638bb901e6fc3009b9112c89681447acf /dev-libs | |
parent | Stable on amd64, bug #441434 (diff) | |
download | gentoo-2-53b517f7bb53d0bb4f9bbcff8fe1660f477052d1.tar.gz gentoo-2-53b517f7bb53d0bb4f9bbcff8fe1660f477052d1.tar.bz2 gentoo-2-53b517f7bb53d0bb4f9bbcff8fe1660f477052d1.zip |
Revision bump: bump to EAPI 4, add 'static-libs' and 'threads' USE-flags, keyword on ~amd64 wrt bug #441958, thanks to Vicente Olivert Riera
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/xxl/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/xxl/xxl-1.0.1-r1.ebuild | 33 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dev-libs/xxl/ChangeLog b/dev-libs/xxl/ChangeLog index 9726246727eb..4a47eef573e7 100644 --- a/dev-libs/xxl/ChangeLog +++ b/dev-libs/xxl/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/xxl # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xxl/ChangeLog,v 1.11 2012/05/10 16:01:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xxl/ChangeLog,v 1.12 2012/11/08 10:03:23 pinkbyte Exp $ + +*xxl-1.0.1-r1 (08 Nov 2012) + + 08 Nov 2012; Sergey Popov <pinkbyte@gentoo.org> +xxl-1.0.1-r1.ebuild: + Revision bump: bump to EAPI 4, add 'static-libs' and 'threads' USE-flags, + keyword on ~amd64 wrt bug #441958, thanks to Vicente Olivert Riera 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -xxl-1.0.0.ebuild: Remove old diff --git a/dev-libs/xxl/xxl-1.0.1-r1.ebuild b/dev-libs/xxl/xxl-1.0.1-r1.ebuild new file mode 100644 index 000000000000..46e728afb47f --- /dev/null +++ b/dev-libs/xxl/xxl-1.0.1-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xxl/xxl-1.0.1-r1.ebuild,v 1.1 2012/11/08 10:03:23 pinkbyte Exp $ + +EAPI=4 + +inherit eutils + +DESCRIPTION="C/C++ library that provides exception handling and asset management" +HOMEPAGE="http://www.zork.org/xxl/" +SRC_URI="http://www.zork.org/software/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="threads static-libs" + +DOCS=( README ) + +src_prepare() { + epatch "${FILESDIR}"/${P}-nested-exception.patch +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable threads) +} + +src_install() { + default + prune_libtool_files +} |