blob: b22a0a5e81b1a2754dab241e9b8aa036772222e1 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/qhull-2003.1-r1.ebuild,v 1.5 2009/02/08 15:22:14 klausman Exp $
inherit eutils flag-o-matic
MY_P="${PN}${PV}"
DESCRIPTION="Geometry library"
HOMEPAGE="http://www.qhull.org"
SRC_URI="${HOMEPAGE}/download/${P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
src_compile() {
# anything beyond -O1 leads to bad code in libqhull on amd64
# with gcc-4.2
if [[ "${ARCH}" == "amd64" ]]; then
replace-flags -O? -O1
fi
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
rm -fr "${D}"/usr/share/doc/${PN}
dodoc Announce.txt .txt File_id.diz README.txt REGISTER.txt
cd html
dohtml *
dodoc *.txt
}
|