blob: c9a50ca5be49f5cfb3217bce92a202d11ccaa08e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.1.ebuild,v 1.12 2005/04/24 12:58:22 hansmi Exp $
inherit flag-o-matic
DESCRIPTION="a platform-independent object-oriented threading architecture"
HOMEPAGE="http://www.cs.buffalo.edu/~crahen/projects/zthread/"
SRC_URI="mirror://sourceforge/zthread/ZThread-${PV}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 sparc ppc alpha ~mips ~hppa amd64"
IUSE="debug"
DEPEND="virtual/libc"
S=${WORKDIR}/ZThread-${PV}
src_compile() {
local myconf=""
use debug \
&& myconf="--enable-debug=yes" \
|| myconf="--enable-debug=no"
append-flags -fpermissive
econf ${myconf} || die "./configure failed"
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS ChangeLog COPYING README* INSTALL NEWS TODO THANK.YOU
}
|