diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-27 13:19:59 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-27 13:19:59 +0000 |
commit | 87959554720753c75358bd722de333c0ec9eb919 (patch) | |
tree | f4bfb39de4940637d2eeb56db3c3b6120e7e69cd /dev-libs | |
parent | sci-chemistry/cns: Drop default value of FCFLAGS as it is in the profile thes... (diff) | |
download | gentoo-2-87959554720753c75358bd722de333c0ec9eb919.tar.gz gentoo-2-87959554720753c75358bd722de333c0ec9eb919.tar.bz2 gentoo-2-87959554720753c75358bd722de333c0ec9eb919.zip |
Version bump
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/jthread/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/jthread/jthread-1.3.0.ebuild | 25 |
2 files changed, 31 insertions, 1 deletions
diff --git a/dev-libs/jthread/ChangeLog b/dev-libs/jthread/ChangeLog index 890eb42fae6f..04decf3068b8 100644 --- a/dev-libs/jthread/ChangeLog +++ b/dev-libs/jthread/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/jthread # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/jthread/ChangeLog,v 1.9 2012/11/22 19:26:42 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jthread/ChangeLog,v 1.10 2012/11/27 13:19:59 pinkbyte Exp $ + +*jthread-1.3.0 (27 Nov 2012) + + 27 Nov 2012; Sergey Popov <pinkbyte@gentoo.org> +jthread-1.3.0.ebuild: + Version bump 22 Nov 2012; Agostino Sarubbo <ago@gentoo.org> jthread-1.2.1.ebuild: Stable for amd64, wrt bug #444304 diff --git a/dev-libs/jthread/jthread-1.3.0.ebuild b/dev-libs/jthread/jthread-1.3.0.ebuild new file mode 100644 index 000000000000..6af59b620c97 --- /dev/null +++ b/dev-libs/jthread/jthread-1.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jthread/jthread-1.3.0.ebuild,v 1.1 2012/11/27 13:19:59 pinkbyte Exp $ + +EAPI=4 + +inherit cmake-utils + +DESCRIPTION="JThread provides some classes to make use of threads easy on different platforms." +HOMEPAGE="http://research.edm.uhasselt.be/~jori/page/index.php?n=CS.Jthread" +SRC_URI="http://research.edm.uhasselt.be/jori/${PN}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +DOCS=( ChangeLog README.TXT TODO doc/manual.tex ) + +src_prepare() { + # do not build static library, if it is not requested + if ! use static-libs; then + sed -i -e '/jthread-static/d' src/CMakeLists.txt || die 'sed on src/CMakeLists.txt failed' + fi +} |