blob: a6b300c5ea4525e37fadc1ba1464b80bfb0e9a17 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/wings/wings-0.98.21c.ebuild,v 1.1 2004/04/12 02:22:06 vapier Exp $
DESCRIPTION="excellent 3D polygon mesh modeler"
HOMEPAGE="http://www.wings3d.com/"
SRC_URI="mirror://sourceforge/wings/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~ppc"
DEPEND=">=dev-lang/erlang-9c
>=media-libs/esdl-0.93.0526"
ERL_PATH=/usr/lib/erlang/lib/
src_compile() {
make ESDL_PATH="${ERL_PATH}/$(best_version media-libs/esdl | cut -d/ -f1)" || die
}
src_install() {
WINGS_PATH=${ERL_PATH}/${P}
dodir ${WINGS_PATH}
find -name 'Makefile*' -exec rm -f '{}' \;
for subdir in e3d ebin icons plugins plugins_src src ; do
cp -r ${subdir} ${D}/${WINGS_PATH}/ || die
done
dosym ${WINGS_PATH} ${ERL_PATH}/${PN}
newbin ${FILESDIR}/wings.sh wings
dodoc AUTHORS README
}
|