blob: 702e91fe8c0de65b928179f61c3d62acdfe2f977 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/qhull-3.1.ebuild,v 1.6 2002/12/09 04:26:13 manson Exp $
S=${WORKDIR}/qhull3.1
DESCRIPTION="Geometry library"
SRC_URI="http://www.geom.umn.edu/software/qhull/qhull3.1.tgz"
HOMEPAGE="http://www.geom.umn.edu/software/qhull/"
SLOT="0"
LICENSE="BSD"
KEYWORDS="x86 sparc "
DEPEND=""
src_compile() {
cd src
make -f Makefile.txt
}
src_install () {
cd src
dolib libqhull.a
dobin qconvex
dobin qdelaunay
dobin qhalf
dobin qhull
dobin qvoronoi
dobin rbox
dodir /usr/include/qhull
insinto /usr/include/qhull
doins *.h
cd ${S}
dodoc Announce.txt COPYING.txt File_id.diz README.txt REGISTER.txt
cd html
rename .htm .html *.htm
rename .man .1 *.man
dohtml -a html,gif *
doman *.1
dodoc *.txt
}
|