blob: 06ccff5da0afd1ba09d80626a7f302afcfb8a4d2 (
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
54
55
56
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/cqrlib/cqrlib-1.1.2-r1.ebuild,v 1.1 2012/04/30 16:55:09 jlec Exp $
EAPI=4
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}"/1.0.6-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}" \
CPPFLAGS="${CXXFLAGS} -DCQR_NOCCODE=1" \
all
}
src_test() {
emake -j1 \
CC=$(tc-getCC) \
CXX=$(tc-getCXX) \
CFLAGS="${CFLAGS}" \
tests
}
src_install() {
emake -j1 DESTDIR="${ED}" install
rm -f "${ED}"/usr/$(get_libdir)/*.la || die
dodoc README_CQRlib.txt
dohtml README_CQRlib.html
}
|