cal3d, remove broken x86_gcc2 build (#3628)

This commit is contained in:
Schrijvers Luc
2019-02-11 21:38:30 +01:00
committed by waddlesplash
parent e028b91b54
commit 87420341d1
2 changed files with 0 additions and 88 deletions

View File

@@ -1,66 +0,0 @@
SUMMARY="Skeletal based character animation library"
DESCRIPTION="Cal3D is a skeletal based 3D character animation library written \
in C++ in a platform-/graphic API-independent way. Originally designed to \
be used in a 3D client for Worldforge, it evolved into a stand-alone \
product which can be used in many different kinds of projects. It supports \
combining animations, actions and morph targets (facial expressions) \
through a \"mixer\"."
HOMEPAGE="https://mp3butcher.github.io/Cal3D/"
COPYRIGHT="2001-2006 Laurent Desmecht, Loic Dachary, Bruno Heidelberger"
LICENSE="GNU LGPL v3"
REVISION="2"
SOURCE_URI="https://mp3butcher.github.io/Cal3D/sources/cal3d-0.11.0.tar.gz"
CHECKSUM_SHA256="fc4a6fe311004987377ec80b804a04aab44c32085fd974d275aa9d0b14144b06"
PATCHES="cal3d-$portVersion.patchset"
ARCHITECTURES="x86 x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
# devel not in a separate package, because there is no .so file.
PROVIDES="
cal3d$secondaryArchSuffix = $portVersion
cmd:cal3d_converter$secondaryArchSuffix
lib:libcal3d$secondaryArchSuffix
"
REQUIRES="
haiku$secondaryArchSuffix
"
PROVIDES_devel="
devel:libcal3d$secondaryArchSuffix
"
REQUIRES_devel="
cal3d$secondaryArchSuffix == $portVersion base
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:aclocal
cmd:autom4te
cmd:gawk
cmd:gcc$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
"
BUILD()
{
libtoolize --force --copy --install
aclocal
autoconf
automake --add-missing
automake
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
mkdir -p $libDir
make install
prepareInstalledDevelLib libcal3d
rm $developLibDir/*.la
packageEntries devel $developLibDir
}

View File

@@ -1,22 +0,0 @@
From e3c08168ca6a641bef912729a6a5e2944eba8399 Mon Sep 17 00:00:00 2001
From: Adrien Destugues <pulkomandy@gmail.com>
Date: Wed, 18 Feb 2015 18:52:01 +0100
Subject: Update configure.in to current standards...
diff --git a/configure.in b/configure.in
index 0bf9601..55606c2 100644
--- a/configure.in
+++ b/configure.in
@@ -13,7 +13,7 @@ dnl ************************************************************************
AC_INIT(src/cal3d/cal3d.h)
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
AC_CANONICAL_SYSTEM
--
2.2.2