blob: 2453a41cce76c2eedf6759b9a05d4b11d7e5c5cf (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/panda3d/panda3d-1.0.5.ebuild,v 1.3 2006/01/09 22:16:47 mr_bones_ Exp $
inherit eutils python
DESCRIPTION="A 3D framework in C++ with python bindings"
HOMEPAGE="http://panda3d.org"
SRC_URI="http://panda3d.org/download/${P}.tar.gz"
LICENSE="Panda3D"
SLOT="0"
KEYWORDS="~x86"
IUSE="png jpeg tiff fmod nspr python ssl truetype doc zlib"
DEPEND="doc? ( dev-python/epydoc )
png? ( media-libs/libpng )
jpeg? ( media-libs/jpeg )
tiff? ( media-libs/tiff )
nspr? ( >=dev-libs/nspr-4.4.1-r2 )
fmod? ( media-libs/fmod )
ssl? ( dev-libs/openssl )
truetype? ( media-libs/freetype )
zlib? ( sys-libs/zlib )
python? ( dev-lang/python )"
use_no()
{
local UWORD="$2"
if [ -z "${UWORD}" ]; then
UWORD="$1"
fi
if useq $1 ; then
echo "--use-${UWORD}"
else
echo "--no-${UWORD}"
fi
}
pkg_setup() {
ewarn "Please note that python bindings are now"
ewarn "set by the python USE flag to coordinate"
ewarn "with upstream."
}
src_unpack()
{
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-makepanda.patch
}
src_compile()
{
./makepanda/makepanda.py \
--compiler LINUXA \
--prefix built \
--libdir $(get_libdir) \
$(use_no python) \
$(use_no png) $(use_no jpeg) \
$(use_no tiff) $(use_no fmod) \
$(use_no ssl) $(use_no truetype freetype) \
$(use_no zlib) $(use_no nspr) \
|| die "build failed"
}
src_install()
{
dodir /opt/panda3d
doenvd ${FILESDIR}/50panda3d
sed -i -e "s:lib:$(get_libdir):g" \
${D}/etc/env.d/50panda3d \
|| die "libdir patching failed"
if use doc; then
cp -R ${S}/samples ${S}/built
cd ${S}/built
epydoc --html direct
fi
if use python ; then
# python installation
python_version
dodir /usr/$(get_libdir)/python${PYVER}/site-packages
cat <<- EOF > ${D}/usr/$(get_libdir)/python${PYVER}/site-packages/panda3d.pth
# This document sets up paths for python to access the
# panda3d modules
/opt/panda3d/built
/opt/panda3d/built/$(get_libdir)
EOF
fi
cp -R ${S}/built/* ${D}/opt/panda3d
use python && touch ${D}/opt/panda3d/built/__init__.py
}
pkg_postinst()
{
einfo "Panda3d is installed in /opt/panda3d"
einfo
if use doc ; then
einfo "Documentation is avaliable in /opt/panda3d/html"
einfo "Samples are avalaible in /opt/panda3d/samples"
fi
einfo "For C++ compiling, include directory must be set:"
einfo "g++ -I/opt/panda3d/include [other flags]"
if use python ; then
einfo
einfo "ppython is depricated and panda3d modules are"
einfo "now installed as standard python modules."
fi
einfo
einfo "Tutorials avaliable at http://panda3d.org"
}
|