blob: a03b5a71ea91eeb5bfe6baa43407ff29d513dc2f (
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
36
37
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvthread/dvthread-0.4.7-r2.ebuild,v 1.2 2005/07/22 00:12:57 ka0ttic Exp $
inherit eutils
DESCRIPTION="classes for threads and monitors, wrapped around the posix thread library"
SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvthread/download/${P}.tar.gz"
HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvthread/html/"
KEYWORDS="~ppc x86"
LICENSE="GPL-2"
SLOT="0"
IUSE="doc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-fix-underquoted-m4.diff
sed -i 's|^\(SUBDIRS =.*\)doc\(.*\)$|\1\2|' Makefile.in || \
die "sed Makefile.in failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog README NEWS
if use doc ; then
# installed by dvutil
rm -f doc/man/*/{Dv,tostring.h}.3
doman doc/man/*/*.[1-9]
dohtml -r doc/html/*
fi
}
|