mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 15:08:57 +02:00
71 lines
2.2 KiB
Bash
71 lines
2.2 KiB
Bash
SUMMARY="Native editor for bitmap graphics"
|
|
DESCRIPTION="WonderBrush is an editor for bitmap graphics. The main window \
|
|
holds any number of documents, which are called Canvas. A canvas has an \
|
|
associated name and pixel resolution as well as some other properties. \
|
|
It also references up to two files, which represent it on disk, one is a file \
|
|
in some export format (ie. an SVG document, a flat Translator bitmap or soure \
|
|
code), the other a full-featured project file.
|
|
Each canvas can have any number of Layers, currently arranged as a list. Each \
|
|
layer represents an individual bitmap in the size of the canvas. Depending on \
|
|
each layers blending mode, they are composed on top of each other to form the \
|
|
final canvas bitmap.
|
|
Each layer can contain any number of Objects, which are created by \
|
|
WonderBrush's tools. Each object has a set of properties which define the \
|
|
unique appearance of the object on the layer.
|
|
At any time, it is possible to reorder the layers, or the objects they \
|
|
contain. This could be called non-linear editing. It is also possible to \
|
|
change most of an objects properties later on. This could be called \
|
|
non-destructive editing, because adding another object (like a filter) does \
|
|
not actually destroy any pixel data."
|
|
HOMEPAGE="http://yellowbites.com/wonderbrush.html"
|
|
COPYRIGHT="2005-2019, Stephan Aßmus und Ingo Weinhold GbR"
|
|
LICENSE="WonderBrush"
|
|
REVISION="9"
|
|
srcGitRev="714967ef1e5f02d9807ed78cbab1583f758078e7"
|
|
SOURCE_URI="https://github.com/stippi/WonderBrush-v2/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="f6f3bddd81c9de690fb076ae51afa29b3565217fe2b2f04f76bc8f18728bfc35"
|
|
SOURCE_DIR="WonderBrush-v2-$srcGitRev"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86_64"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/WonderBrush directory
|
|
"
|
|
|
|
PROVIDES="
|
|
wonderbrush = $portVersion compat >= 2
|
|
app:WonderBrush = $portVersion compat >= 2
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libexpat
|
|
lib:libfreetype
|
|
lib:liblayout
|
|
lib:libz
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libexpat
|
|
devel:libfreetype
|
|
devel:liblayout
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku
|
|
cmd:gcc
|
|
cmd:jam
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
# multi-job builds don't work reliably
|
|
jam
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp WonderBrush/WonderBrush $appsDir
|
|
addAppDeskbarSymlink $appsDir/WonderBrush
|
|
}
|