Gentoo Archives: gentoo-commits

From: "Mark Loeser (halcy0n)" <halcy0n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/zthread: ChangeLog zthread-2.3.2-r1.ebuild
Date: Sun, 19 Apr 2009 20:00:37
Message-Id: E1LvdBr-0008Li-0r@stork.gentoo.org
1 halcy0n 09/04/19 20:00:35
2
3 Modified: ChangeLog
4 Added: zthread-2.3.2-r1.ebuild
5 Log:
6 Patch so that -fpermissive is not needed to build. Thanks to Wilfried Holzke <gentoo AT holzke DOT net>; bug #232645
7 (Portage version: 2.2_rc30/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 dev-libs/zthread/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zthread/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 24 Sep 2007 21:22:15 -0000 1.22
23 +++ ChangeLog 19 Apr 2009 20:00:34 -0000 1.23
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-libs/zthread
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.22 2007/09/24 21:22:15 dev-zero Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.23 2009/04/19 20:00:34 halcy0n Exp $
30 +
31 +*zthread-2.3.2-r1 (19 Apr 2009)
32 +
33 + 19 Apr 2009; Mark Loeser <halcy0n@g.o>
34 + +files/zthread-2.3.2-no-fpermissive.diff, +zthread-2.3.2-r1.ebuild:
35 + Patch so that -fpermissive is not needed to build. Thanks to Wilfried
36 + Holzke <gentoo AT holzke DOT net>; bug #232645
37
38 *zthread-2.3.2 (24 Sep 2007)
39
40
41
42
43 1.1 dev-libs/zthread/zthread-2.3.2-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: zthread-2.3.2-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r1.ebuild,v 1.1 2009/04/19 20:00:34 halcy0n Exp $
53
54 inherit flag-o-matic eutils
55
56 MY_P="ZThread-${PV}"
57
58 DESCRIPTION="A platform-independent multi-threading and synchronization library for C++"
59 HOMEPAGE="http://zthread.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/zthread/${MY_P}.tar.gz"
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
64 IUSE="debug doc kernel_linux"
65
66 DEPEND="doc? ( app-doc/doxygen )"
67 RDEPEND=""
68
69 S="${WORKDIR}"/${MY_P}
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 epatch "${FILESDIR}"/${P}-no-fpermissive.diff
75 }
76
77 src_compile() {
78 econf \
79 $(use_enable debug) \
80 $(use_enable kernel_linux atomic-linux) \
81 || die "configure failed"
82 emake || die "make failed"
83
84 if use doc ; then
85 doxygen doc/zthread.doxygen || die "generating docs failed"
86 cp ./doc/documentation.html ./doc/html/index.html
87 cp ./doc/zthread.css ./doc/html/zthread.css
88 cp ./doc/bugs.js ./doc/html/bugs.js;
89 fi
90 }
91
92 src_install() {
93 # Uses it's own install-hooks and ignores DESTDIR
94 einstall || die "einstall failed"
95 dodoc AUTHORS ChangeLog README NEWS TODO
96 use doc && dohtml doc/html/*
97 }