mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
Contains some various fixes from Haiku's trunk and some other miscellaneous file/directory structure changes.
66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
SUMMARY="Deprecated custom widget library."
|
|
DESCRIPTION="Santa's Gift Bag has some useful custom widgets \
|
|
(color picker, column list view, scroll view etc.) DO NOT use for new \
|
|
applications! Use libwalter or Haiku's experimental widgets (libshared). \
|
|
This package only exists for applications that have not yet been migrated."
|
|
HOMEPAGE="https://github.com/HaikuArchives/SantasGiftBag"
|
|
COPYRIGHT="1997-2000 Brian Tietz"
|
|
LICENSE="libsanta"
|
|
SRC_URI="https://github.com/HaikuArchives/SantasGiftBag/archive/41e3b43058acb99959582187d31495cfbb8435f3.tar.gz"
|
|
CHECKSUM_SHA256="1c5ff2b0b3e2e81bbd99b226313ebf74f29fc969046bf1cf1f929bbfcb9ca763"
|
|
SOURCE_DIR="SantasGiftBag-41e3b43058acb99959582187d31495cfbb8435f3"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
libsanta$secondaryArchSuffix = $portVersion
|
|
lib:libsanta$secondaryArchSuffix = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix >= $haikuVersion
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:mkdepend
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
libsanta${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libsanta$secondaryArchSuffix = $portVersion
|
|
"
|
|
|
|
REQUIRES_devel="
|
|
libsanta$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make OBJ_DIR=objects $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $developDocDir/ $includeDir $libDir
|
|
|
|
cp -R docs/* $developDocDir/
|
|
|
|
cp objects/libsanta.so $libDir/libsanta.so.3.0.1
|
|
ln -s $libDir/libsanta.so.3.0.1 $libDir/libsanta.so.3
|
|
ln -s $libDir/libsanta.so.3.0.1 $libDir/libsanta.so
|
|
|
|
cp -R include/. $includeDir/
|
|
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|