Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/threadpool/
Date: Mon, 05 Sep 2016 09:21:22
Message-Id: 1473067145.10e3bb9d02fae277221023e09074a2ee1605228f.soap@gentoo
1 commit: 10e3bb9d02fae277221023e09074a2ee1605228f
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 08:43:42 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 09:19:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10e3bb9d
7
8 dev-cpp/threadpool: Remove deprecated ebuild
9
10 Package-Manager: portage-2.3.0
11
12 dev-cpp/threadpool/threadpool-0.2.5.ebuild | 47 ------------------------------
13 1 file changed, 47 deletions(-)
14
15 diff --git a/dev-cpp/threadpool/threadpool-0.2.5.ebuild b/dev-cpp/threadpool/threadpool-0.2.5.ebuild
16 deleted file mode 100644
17 index 6b82416..00000000
18 --- a/dev-cpp/threadpool/threadpool-0.2.5.ebuild
19 +++ /dev/null
20 @@ -1,47 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=4
26 -
27 -inherit base
28 -
29 -DESCRIPTION="A cross-platform C++ thread pool library (built on top of Boost)"
30 -HOMEPAGE="http://threadpool.sourceforge.net/"
31 -MY_PV=${PV//./_}
32 -MY_P=${PN}-${MY_PV}
33 -SRC_URI_BASE="mirror://sourceforge/threadpool/threadpool/${PV}%20%28Stable%29"
34 -SRC_URI="${SRC_URI_BASE}/${MY_P}-src.zip
35 - doc? ( ${SRC_URI_BASE}/${MY_P}-doc.zip )"
36 -
37 -LICENSE="Boost-1.0"
38 -SLOT="0"
39 -KEYWORDS="~amd64 ~x86"
40 -IUSE="doc"
41 -
42 -DEPEND=""
43 -RDEPEND="dev-libs/boost"
44 -
45 -S="${WORKDIR}/${MY_P}-src/${PN}"
46 -
47 -PATCHES=( "${FILESDIR}/${P}-memleak.patch" )
48 -
49 -src_prepare() {
50 - base_src_prepare
51 -}
52 -
53 -src_compile() {
54 - # Do nothing
55 - # The makefile just builds the documentation again
56 - # Not even any install targets
57 - :
58 -}
59 -
60 -src_install() {
61 - insinto /usr/include/
62 - doins -r boost
63 - dodoc README TODO CHANGE_LOG
64 - if use doc; then
65 - dohtml -r "${WORKDIR}"/"${MY_P}"-doc/
66 - fi
67 -}