blob: ca73f7094d6c86c4be00b874e43a5e299c608c65 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils multilib versionator flag-o-matic
MY_PV=OpenCTM-${PV}
DESCRIPTION="OpenCTM - the Open Compressed Triangle Mesh."
HOMEPAGE="http://openctm.sourceforge.net"
SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}+dfsg1.orig.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/tinyxml
media-libs/freeglut
media-libs/glew
media-libs/pnglite
virtual/opengl
x11-libs/gtk+:2"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_PV}"
src_prepare() {
epatch \
"${FILESDIR}"/openctm-fix-makefiles.patch \
"${FILESDIR}"/openctm-no-strip.patch
mv Makefile.linux Makefile || die
sed \
-e "s:@GENTOO_LIBDIR@:$(get_libdir):g" \
-i Makefile || die
}
src_compile() {
emake CC=$(tc-getCC) CXX=$(tc-getCXX)
}
src_install() {
emake DESTDIR="${ED}" install
}
|