blob: 6218aa80fc043608a6b9467aedaef4fd713e2f6d (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openinventor/openinventor-2.1.5.10.ebuild,v 1.3 2005/11/14 20:25:50 stefaan Exp $
inherit eutils versionator
MY_PV=$(replace_version_separator 3 '-')
MY_PN="inventor"
DESCRIPTION="SGI OpenInventor Toolkit and Utilities"
HOMEPAGE="http://oss.sgi.com/projects/inventor/"
SRC_URI="ftp://oss.sgi.com/projects/${MY_PN}/download/${MY_PN}-${MY_PV}.src.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ~x86"
IUSE=""
RDEPEND="virtual/x11
virtual/opengl
virtual/motif
>=media-libs/jpeg-6b
>=media-libs/freetype-2.0"
DEPEND="dev-util/byacc
${RDEPEND}"
S="${WORKDIR}/${MY_PN}"
src_unpack() {
unpack ${A}
cd ${S}
# ordinary yacc fails
epatch ${FILESDIR}/use-byacc.patch
# support for amd64, sparc and alpha
epatch ${FILESDIR}/support-archs.patch
# freetype2 wasn't enabled by default
epatch ${FILESDIR}/freetype2-activate.patch
# extra #include statement necessary for freetype2
epatch ${FILESDIR}/freetype2-includes.patch
# script aiding in manual installation required csh
epatch ${FILESDIR}/no-csh.patch
# put files in sane places
epatch ${FILESDIR}/gentoo-paths.patch
# fix compilation with gcc-4
epatch ${FILESDIR}/gcc4-support.patch
}
src_compile() {
# VLDOPTS: find libraries during linking of executables
# VLDDSOOPTS: find libraries during linking of libraries
# VCFLAGS / VCXXFLAGS: pass user-chosen compiler flags
# OPTIMIZER: do not override user-chosen compiler flags
# system
emake \
VLDOPTS="-L${S}/lib -L${S}/libSoXt" \
VLDDSOOPTS="-L${S}/lib -L${S}/libSoXt" \
VCFLAGS="${CFLAGS}" VCXXFLAGS="${CXXFLAGS}" \
OPTIMIZER= \
|| die "Build failed"
}
src_install() {
# IVROOT: serves as DESTDIR
# LLDOPTS: delete, so it won't go linking with libraries already on the
# system
# LD_LIBRARY_PATH: support executables ran during install
make \
IVROOT="${D}" \
LLDOPTS= \
IVLIBDIR="${D}usr/$(get_libdir)" \
LD_LIBRARY_PATH="${D}usr/$(get_libdir)" \
install \
|| die "Install failed"
# OpenInventor aliases for TrueType fonts
local FONTDIR=/usr/share/fonts/corefonts
local ALIASDIR=/usr/share/${PN}/fonts
dodir ${ALIASDIR}
dosym ${FONTDIR}/times.ttf ${ALIASDIR}/Times-Roman
dosym ${FONTDIR}/arial.ttf ${ALIASDIR}/Helvetica
dosym ${FONTDIR}/cour.ttf ${ALIASDIR}/Utopia-Regular
}
|