mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
Changelog:
* Overhauled the Layers window and handling:
- improved layout
- reduced commands to the most useful, moved to main menu
- added naming layers
- added transparency slider
- added blending modes: Normal, Multiply. Divide, Screen,
Overlay, Hard light, Soft light, Vivid light, Pin light,
Hard mix, Difference, Exclusion, Color dodge, Linear dodge,
Color burn, Linear burn, Darken, and Lighten
* Improved Colors window
- removed YIQ and YUV color modes
- added CIELAB color mode
- accept drag'n'dropped colors
- set/show hex-value of current color
- removed palette from main window
* Make current tool more obvious in Tools window
* Bufixes and polishing
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
SUMMARY="A painting and image editing program"
|
|
DESCRIPTION="ArtPaint is a program for painting and image-processing that \
|
|
won a Be's Masters Award in 1998. Since then - after a rather long hiatus - \
|
|
ArtPaint development is active again on Haiku.
|
|
|
|
The main features of ArtPaint include a comprehensive set of painting-tools \
|
|
and real-time preview for many image-manipulating add-ons."
|
|
HOMEPAGE="https://github.com/HaikuArchives/ArtPaint"
|
|
COPYRIGHT="2003 Heikki Suhonen
|
|
2009 Karsten Heimrich
|
|
2013-2022 HaikuArchives team"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="$HOMEPAGE/archive/$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="ff3f35a72f5bf1960a1b96d22652534dedb0a3c3d9971dd504c6cfce0e1b3209"
|
|
SOURCE_DIR="ArtPaint-$portVersion"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
artpaint$secondaryArchSuffix = $portVersion
|
|
app:ArtPaint = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:find
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:g++$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./build.sh
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/ArtPaint
|
|
cp -r dist/* $appsDir/ArtPaint
|
|
addAppDeskbarSymlink $appsDir/ArtPaint/ArtPaint
|
|
}
|