From 10ad62ea9af76ab6527edf02fd452eed00613c4a Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Tue, 18 Jan 2022 22:31:29 -0500 Subject: [PATCH] Add disabled, not yet working GIMP recipe. --- media-gfx/gimp/gimp-2.99.8.recipe | 58 +++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 media-gfx/gimp/gimp-2.99.8.recipe diff --git a/media-gfx/gimp/gimp-2.99.8.recipe b/media-gfx/gimp/gimp-2.99.8.recipe new file mode 100644 index 000000000..b7f18ac1a --- /dev/null +++ b/media-gfx/gimp/gimp-2.99.8.recipe @@ -0,0 +1,58 @@ +SUMMARY="The Free & Open Source Image Editor" +DESCRIPTION="GIMP is a cross-platform image editor available for GNU/Linux, \ +macOS, Windows and more operating systems. + +Whether you are a graphic designer, photographer, illustrator, or scientist, \ +GIMP provides you with sophisticated tools to get your job done. You can \ +further enhance your productivity with GIMP thanks to many customization \ +options and 3rd party plugins." +HOMEPAGE="https://www.gimp.org/" +COPYRIGHT="1995-2021 Spencer Kimball, Peter Mattis, and the GIMP Development Team" +LICENSE="GNU GPL v3" +REVISION="1" +SOURCE_URI="https://download.gimp.org/mirror/pub/gimp/v2.99/gimp-$portVersion.tar.bz2" +CHECKSUM_SHA256="dd916bd3474ef2efc652a0510280977ab8ea95e3d95d918394b0662261c32aae" + +# not working: missing many dependencies +ARCHITECTURES="?all !x86_gcc2" +SECONDARY_ARCHITECTURES="?x86" + +PROVIDES=" + gimp$secondaryArchSuffix = $portVersion + app:gimp$secondaryArchSuffix = $portVersion + " +REQUIRES=" + haiku$secondaryArchSuffix + gobject_introspection$secondaryArchSuffix + lib:libgtk_3$secondaryArchSuffix + lib:libglib_networking_2.0$secondaryArchSuffix + " + +BUILD_REQUIRES=" + haiku${secondaryArchSuffix}_devel + gobject_introspection${secondaryArchSuffix}_devel + lib:libglib_networking_2.0$secondaryArchSuffix + devel:libgtk_3$secondaryArchSuffix + " +BUILD_PREREQUIRES=" + cmd:intltoolize + cmd:awk + cmd:g++$secondaryArchSuffix + cmd:make + cmd:pkg_config$secondaryArchSuffix + cmd:python3 + " + +BUILD() +{ + runConfigure ./configure \ + --with-vala=no + + make $jobArgs +} + +INSTALL() +{ + make install + addAppDeskbarSymlink $binDir/gimp +}