diff options
author | David Seifert <soap@gentoo.org> | 2016-09-05 10:42:14 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-09-05 11:19:02 +0200 |
commit | 208a3d824ffa49a276a684bb812446d86902e185 (patch) | |
tree | 382bbfda395726d87b0b3c86645743e06fe95dc4 /dev-cpp/threadpool/threadpool-0.2.5-r1.ebuild | |
parent | media-video/ffmpeg: remove old (diff) | |
download | gentoo-208a3d824ffa49a276a684bb812446d86902e185.tar.gz gentoo-208a3d824ffa49a276a684bb812446d86902e185.tar.bz2 gentoo-208a3d824ffa49a276a684bb812446d86902e185.zip |
dev-cpp/threadpool: Modernize to EAPI=6
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-cpp/threadpool/threadpool-0.2.5-r1.ebuild')
-rw-r--r-- | dev-cpp/threadpool/threadpool-0.2.5-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-cpp/threadpool/threadpool-0.2.5-r1.ebuild b/dev-cpp/threadpool/threadpool-0.2.5-r1.ebuild new file mode 100644 index 000000000000..3b125a50fd41 --- /dev/null +++ b/dev-cpp/threadpool/threadpool-0.2.5-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A cross-platform C++ thread pool library (built on top of Boost)" +HOMEPAGE="http://threadpool.sourceforge.net/" +MY_PV=${PV//./_} +MY_P=${PN}-${MY_PV} +SRC_URI_BASE="mirror://sourceforge/threadpool/threadpool/${PV}%20%28Stable%29" +SRC_URI="${SRC_URI_BASE}/${MY_P}-src.zip + doc? ( ${SRC_URI_BASE}/${MY_P}-doc.zip )" + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="" +RDEPEND="dev-libs/boost" + +S="${WORKDIR}/${MY_P}-src/${PN}" + +DOCS=( README TODO CHANGE_LOG ) +PATCHES=( "${FILESDIR}/${P}-memleak.patch" ) + +src_compile() { + # Do nothing + # The makefile just builds the documentation again + # Not even any install targets + return +} + +src_install() { + doheader -r boost + + use doc && HTML_DOCS+=( "${WORKDIR}"/"${MY_P}"-doc/. ) + einstalldocs +} |