media-gfx/wings: Version 2.1.7.

Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
Jeroen Roovers
2018-06-03 15:32:38 +02:00
parent a9164316ed
commit 76250796cf
2 changed files with 64 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST wings-2.1.5.tar.bz2 2653117 BLAKE2B 10b14e8dd29daf74fd6af9229341296fa457df405542274533df85198d932188c53094afffbc4b09342c29086df02a7e19d4983f1fc912623ea79ae85e9d4067 SHA512 37f363f39d0618550d7814733a4e52c18b52c7d8ee357c76dcf97ae1b530f5b941bddecfba18d63538792dda3ca3013055759595157832e11e017bfe18b34df0
DIST wings-2.1.6.tar.bz2 2688154 BLAKE2B 9183ac21f3ae58e5c4d248f3ab9e8af89c3838b312aa51f6d625c21cde05b9326156737e449876aa2a0ea8047a9ce75ad433fe1430ff5add2c5b516144ba7244 SHA512 db17ae58f57233a65f9cec43cca41e9d259eb6499229e6ffc1f1acb8e86e18deda7a1ab1075f0948885cc4ca3c075871150efb007bf3e8e8e5a2e77b5b924af7
DIST wings-2.1.7.tar.bz2 2720764 BLAKE2B b0ba4a1acaee6ea0bcd21cab1eca1a37a0fd3549c2d5551969e71084eb2596a9c7574f0ddc3a86230fccbaf58c3ac87d7061ccfa17047d10e1b8bff096198235 SHA512 6cd2816e22b2326af43f539831d36b32015828c5261c0503ea36cd171dfd8a54eba65165395fbb3f173224d6bb2d3a3015f8f58225c6237c2d5bf56604e72d10

View File

@@ -0,0 +1,63 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit multilib
DESCRIPTION="Wings 3D is an advanced subdivision modeler"
HOMEPAGE="http://www.wings3d.com/"
SRC_URI="mirror://sourceforge/wings/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
>=dev-lang/erlang-18.1[smp,wxwidgets]
dev-libs/cl
media-libs/glu
media-libs/libsdl[opengl]
virtual/opengl
"
DEPEND="${RDEPEND}"
src_prepare() {
default
sed -i \
-e '/include_lib/s|"wings/|"../|' \
$(find . -name '*'.erl) \
|| die
sed -i \
-e 's|-O3||g' \
-e 's|-Werror||g' \
-e 's|CFLAGS = |CFLAGS += |g' \
$(find . -name Makefile) \
|| die
}
src_configure() {
export ERL_PATH="/usr/$(get_libdir)/erlang/lib/"
}
src_compile() {
# Work around parallel make issues
emake vsn.mk
for subdir in intl_tools src e3d icons plugins_src; do
emake -C ${subdir}
done
}
src_install() {
WINGS_PATH=${ERL_PATH}/${P}
dodir ${WINGS_PATH}
find -name 'Makefile*' -exec rm -f '{}' \;
insinto ${WINGS_PATH}
doins -r e3d ebin icons plugins psd shaders src textures tools
newbin "${FILESDIR}"/wings.sh-r1 wings
dodoc AUTHORS README
}