dev-libs/jthread: drop old version

Closes: https://bugs.gentoo.org/651004
Package-Manager: Portage-2.3.19, Repoman-2.3.6
This commit is contained in:
Sergey Popov
2018-04-02 10:51:40 +03:00
parent d4aa945dce
commit 92e83934bf
2 changed files with 0 additions and 25 deletions

View File

@@ -1,2 +1 @@
DIST jthread-1.3.1.tar.bz2 8130 BLAKE2B 38929704e2d8308e3c9094d7627ef0f807af26f647aa0269bc726dfa42f541b6cf4cd21596687071e975e6e13b447b39a2c78a4c9b42131a991fc36183fa3bd5 SHA512 ea369ed8028266d67d2a7aeadbc6dd4859191f563dc2f328ad3622af3cc010e366c446a9d325fd689dd35473e6547e552dd0715a4ab308207f46260382f1603f
DIST jthread-1.3.3.tar.bz2 8514 BLAKE2B ba24fb73f5b02e64af81f889401cc81acaf8c6d60fcfa0316b92e9356b36f8ec65a9cbf0fb999867ef2b590fe15a46136f165739279b14805d26dce8d55b1b0e SHA512 87c57db51014cd1af87cb4a7f6ac1ccfdff699cf72ff91ecbdb30702c844aad360768261d7bf6391b96639cc17f2fae29f3f3506a333b4ce6ed8a9ba64239e6f

View File

@@ -1,24 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
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
}