blob: 59d0bc86c0af0c0d2443b529f85e676b14ee7a45 (
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
|
# Copyright 1999-2010 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.11 2010/07/09 09:13:57 ssuominen Exp $
EAPI=2
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 ~x86-fbsd"
IUSE="doc"
pkg_setup() {
append-flags -fno-strict-aliasing
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
rm -fr "${D}"/usr/share/doc/${PN}
dodoc Announce.txt File_id.diz README.txt REGISTER.txt
if use doc; then
cd html
dohtml * || die
dodoc *.txt || die
fi
}
|