mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 19:50:05 +02:00
Add recipe for my FLTK port git branch
This commit is contained in:
132
x11-libs/fltk/fltk-1.3~git.recipe
Normal file
132
x11-libs/fltk/fltk-1.3~git.recipe
Normal file
@@ -0,0 +1,132 @@
|
||||
SUMMARY="A cross-platform C++ GUI toolkit for X11, MS Windows, OSX and Haiku"
|
||||
DESCRIPTION="FLTK (pronounced \"fulltick\") is a cross-platform C++ GUI \
|
||||
toolkit for UNIX®/Linux® (X11), Microsoft® Windows®, and MacOS® X. \
|
||||
FLTK provides modern GUI functionality without the bloat and \
|
||||
supports 3D graphics via OpenGL® and its built-in GLUT emulation.
|
||||
NOTE: OpenGL is not supported yet.
|
||||
|
||||
FLTK is designed to be small and modular enough to be statically linked, \
|
||||
but works fine as a shared library. \
|
||||
FLTK also includes an excellent UI builder called FLUID that can be used \
|
||||
to create applications in minutes."
|
||||
HOMEPAGE="https://www.fltk.org/"
|
||||
COPYRIGHT="1998-2019 by Bill Spitzak and others."
|
||||
LICENSE="FLTK
|
||||
GNU LGPL v2"
|
||||
REVISION="1"
|
||||
#SOURCE_URI="git+https://github.com/mmuman/fltk.git#haiku-1.3-final"
|
||||
SOURCE_URI="https://github.com/mmuman/fltk/archive/haiku-1.3-final.zip"
|
||||
#CHECKSUM_SHA256=""
|
||||
CHECKSUM_SHA256="a57ed6729dcf1d315ca63912f6660ada1c3548289366ff34bdcfa38b8d45eb89"
|
||||
#SOURCE_DIR="qt-everywhere-src-${portVersion/\~/-}"
|
||||
SOURCE_DIR="fltk-haiku-1.3-final"
|
||||
|
||||
#PATCHES="qt5-$portVersion.patchset"
|
||||
|
||||
ARCHITECTURES="!x86_gcc2 ?x86 ?x86_64"
|
||||
SECONDARY_ARCHITECTURES="?x86"
|
||||
|
||||
PROVIDES="
|
||||
fltk$secondaryArchSuffix = $portVersion compat >= 1.3
|
||||
lib:libfltk$secondaryArchSuffix = $portVersion compat >= 1.3
|
||||
lib:libfltk_forms$secondaryArchSuffix = $portVersion compat >= 1.3
|
||||
lib:libfltk_images$secondaryArchSuffix = $portVersion compat >= 1.3
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
#lib:libgl$secondaryArchSuffix
|
||||
#lib:libglu$secondaryArchSuffix
|
||||
#lib:libintl$secondaryArchSuffix
|
||||
lib:libjpeg$secondaryArchSuffix
|
||||
lib:libpng16$secondaryArchSuffix
|
||||
lib:libz$secondaryArchSuffix
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
fltk${secondaryArchSuffix}_devel = $portVersion compat >= 1.3
|
||||
devel:libfltk$secondaryArchSuffix = $portVersion compat >= 1.3
|
||||
devel:libfltk_forms$secondaryArchSuffix = $portVersion compat >= 1.3
|
||||
devel:libfltk_images$secondaryArchSuffix = $portVersion compat >= 1.3
|
||||
cmd:fltk_config$secondaryArchSuffix = $portVersion compat >= 1.3
|
||||
cmd:fluid$secondaryArchSuffix = $portVersion compat >= 1.3
|
||||
"
|
||||
|
||||
REQUIRES_devel="
|
||||
fltk$secondaryArchSuffix == $portVersion base
|
||||
haiku$secondaryArchSuffix
|
||||
#lib:libgl$secondaryArchSuffix
|
||||
#lib:libglu$secondaryArchSuffix
|
||||
lib:libjpeg$secondaryArchSuffix
|
||||
lib:libpng16$secondaryArchSuffix
|
||||
lib:libz$secondaryArchSuffix
|
||||
#devel:libgl$secondaryArchSuffix
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
#devel:libgl$secondaryArchSuffix
|
||||
#devel:libglu$secondaryArchSuffix
|
||||
devel:libjpeg$secondaryArchSuffix
|
||||
devel:libpng16$secondaryArchSuffix
|
||||
devel:libz$secondaryArchSuffix
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:autoconf
|
||||
cmd:automake
|
||||
cmd:awk
|
||||
cmd:doxygen
|
||||
cmd:g++$secondaryArchSuffix
|
||||
cmd:grep
|
||||
cmd:ld$secondaryArchSuffix
|
||||
cmd:make
|
||||
cmd:man
|
||||
cmd:pkg_config$secondaryArchSuffix
|
||||
cmd:sed
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
NOCONFIGURE=1 sh ./autogen.sh
|
||||
runConfigure ./configure \
|
||||
--enable-shared \
|
||||
--disable-gl \
|
||||
--disable-localjpeg \
|
||||
--disable-localpng \
|
||||
--disable-localzlib \
|
||||
--enable-debug
|
||||
make $jobArgs
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
mkdir -p $docDir
|
||||
make install
|
||||
|
||||
fixPkgconfig
|
||||
|
||||
prepareInstalledDevelLibs \
|
||||
libfltk
|
||||
|
||||
mv -f $libDir/*.a $developLibDir/
|
||||
|
||||
# TODO: fix configure.ac
|
||||
mkdir -p $developDocDir
|
||||
mv -f $dataDir/doc/fltk/* $developDocDir/
|
||||
|
||||
# install does not copy attributes and strips resources!?
|
||||
copyattr -d fluid/fluid $binDir/fluid
|
||||
|
||||
addAppDeskbarSymlink $binDir/fluid "FLUID"
|
||||
|
||||
# extract the FLTK license, we already have the GPLv2 text
|
||||
# XXX: haikuporter does not like it, wants the licence beforehand anyway.
|
||||
#sed -n '/^------/q;p' < COPYING > $dataDir/licenses/FLTK
|
||||
|
||||
packageEntries devel \
|
||||
$developDir \
|
||||
$binDir \
|
||||
$manDir \
|
||||
${dataDir}/deskbar
|
||||
}
|
||||
46
x11-libs/fltk/licenses/FLTK
Normal file
46
x11-libs/fltk/licenses/FLTK
Normal file
@@ -0,0 +1,46 @@
|
||||
FLTK License
|
||||
December 11, 2001
|
||||
|
||||
The FLTK library and included programs are provided under the terms
|
||||
of the GNU Library General Public License (LGPL) with the following
|
||||
exceptions:
|
||||
|
||||
1. Modifications to the FLTK configure script, config
|
||||
header file, and makefiles by themselves to support
|
||||
a specific platform do not constitute a modified or
|
||||
derivative work.
|
||||
|
||||
The authors do request that such modifications be
|
||||
contributed to the FLTK project - send all contributions
|
||||
through the "Software Trouble Report" on the following page:
|
||||
|
||||
http://www.fltk.org/str.php
|
||||
|
||||
2. Widgets that are subclassed from FLTK widgets do not
|
||||
constitute a derivative work.
|
||||
|
||||
3. Static linking of applications and widgets to the
|
||||
FLTK library does not constitute a derivative work
|
||||
and does not require the author to provide source
|
||||
code for the application or widget, use the shared
|
||||
FLTK libraries, or link their applications or
|
||||
widgets against a user-supplied version of FLTK.
|
||||
|
||||
If you link the application or widget to a modified
|
||||
version of FLTK, then the changes to FLTK must be
|
||||
provided under the terms of the LGPL in sections
|
||||
1, 2, and 4.
|
||||
|
||||
4. You do not have to provide a copy of the FLTK license
|
||||
with programs that are linked to the FLTK library, nor
|
||||
do you have to identify the FLTK license in your
|
||||
program or documentation as required by section 6
|
||||
of the LGPL.
|
||||
|
||||
However, programs must still identify their use of FLTK.
|
||||
The following example statement can be included in user
|
||||
documentation to satisfy this requirement:
|
||||
|
||||
[program/widget] is based in part on the work of
|
||||
the FLTK project (http://www.fltk.org).
|
||||
|
||||
Reference in New Issue
Block a user