blob: 9369964c18d6a2f920be2ee5e66e21879e87789d (
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
52
53
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/cqrlib/cqrlib-1.0.5.ebuild,v 1.4 2011/01/23 15:11:04 xarthisius Exp $
EAPI="3"
inherit base flag-o-matic multilib toolchain-funcs versionator
MY_PN=CQRlib
MY_P="${MY_PN}-${PV}"
DESCRIPTION="An ANSI C implementation of a utility library for quaternion arithmetic and quaternion rotation math"
HOMEPAGE="http://cqrlib.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="dev-libs/cvector"
DEPEND="${RDEPEND}"
S="${WORKDIR}"/${MY_P}
PATCHES=(
"${FILESDIR}"/${PV}-gentoo.patch
)
src_compile() {
sed "s:GENTOOLIBDIR:$(get_libdir):g" -i Makefile || die
append-flags -ansi
emake \
CC=$(tc-getCC) \
CXX=$(tc-getCXX) \
CFLAGS="${CFLAGS}" \
all || die
}
src_test() {
emake -j1 \
CC=$(tc-getCC) \
CXX=$(tc-getCXX) \
CFLAGS="${CFLAGS}" \
tests || die
}
src_install() {
emake -j1 DESTDIR="${ED}" install || die
dodoc README_CQRlib.txt || die
dohtml README_CQRlib.html || die
}
|