emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#32976: closed ([PATCH] Add gimp-resynthesizer pack


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#32976: closed ([PATCH] Add gimp-resynthesizer package)
Date: Mon, 08 Oct 2018 21:23:01 +0000

Your message dated Mon, 08 Oct 2018 23:22:05 +0200
with message-id <address@hidden>
and subject line Re: [bug#32976] [PATCH] * gnu/packages/gimp.scm 
(gimp-resynthesizer): New variable.
has caused the debbugs.gnu.org bug report #32976,
regarding [PATCH] Add gimp-resynthesizer package
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
32976: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32976
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] Add gimp-resynthesizer package Date: Sun, 7 Oct 2018 20:31:57 +0200 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1
* gnu/packages/gimp.scm (gimp-resynthesizer): New variable.
---
 gnu/packages/gimp.scm | 61 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index df8f242c7..2e74f3128 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2016, 2017, 2018 Efraim Flashner <address@hidden>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018 Leo Famulari <address@hidden>
+;;; Copyright © 2018 Thorsten Wilms <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -305,3 +306,63 @@ brushstrokes which is used by MyPaint and GIMP.")
 MyPaint.")
     (home-page "https://github.com/Jehan/mypaint-brushes";)
     (license license:cc0)))
+
+(define-public gimp-resynthesizer
+ ;; GIMP does not respect any plugin search path environment variable, so after
+  ;; installation users have to edit their GIMP settings to include
+  ;; "$HOME/.guix-profile/lib/gimp/2.0/plug-ins/" in
+  ;; “Edit->Preferences->Folders->Plug Ins”.
+  (package
+   (name "gimp-resynthesizer")
+   (version "2.0.3")
+   (source
+    (origin
+     (method url-fetch)
+ (uri (string-append "https://github.com/bootchk/resynthesizer/archive/v";
+                        version
+                        ".tar.gz"))
+ (sha256 (base32 "0l3404w6rqny7h3djskxf149gzx6x4qhndgbh3403c9lbh4pi1kr"))))
+   (build-system gnu-build-system)
+   (arguments
+    `(;; Turn off tests to avoid:
+ ;; make[1]: *** No rule to make target '../src/resynth-gui.c', needed by 'resynthesizer.pot'. Stop.
+      #:tests? #f
+      #:phases
+      (modify-phases %standard-phases
+       (add-after 'unpack 'set-env
+         (lambda _
+           (setenv "CONFIG_SHELL" (which "sh"))
+           #t))
+       (add-after 'configure 'set-prefix
+         ;; Attempt to install to GIMP's plugin directory will fail.
+         ;; Use own store address.
+          (lambda* (#:key outputs #:allow-other-keys)
+            (let ((target (string-append (assoc-ref outputs "out")
+                                         "/lib/gimp/"
+ (car (string-split ,(package-version gimp) #\.))
+                                         ".0")))
+              (substitute* (list "src/resynthesizer/Makefile"
+                                "src/resynthesizer-gui/Makefile")
+               (("GIMP_LIBDIR = .*")
+                 (string-append "GIMP_LIBDIR = " target "\n")))
+              (mkdir-p target))
+            #t))
+       )))
+   (native-inputs
+    `(("autoconf" ,autoconf-wrapper)
+      ("automake" ,automake)
+      ("glib" ,glib "bin") ; glib-gettextize
+      ("intltool" ,intltool)
+      ("pkg-config" ,pkg-config)))
+   (inputs
+    `(("gimp" ,gimp)
+      ("gdk-pixbuf" ,gdk-pixbuf) ; needed by gimp-2.0.pc
+      ("cairo" ,cairo)
+      ("gegl" ,gegl)
+      ("gtk+" ,gtk+-2) ; needed by gimpui-2.0.pc
+      ("glib" ,glib)))
+   (home-page "https://github.com/bootchk/resynthesizer";)
+   (synopsis "GIMP plugins for texture synthesis")
+   (description
+ "Resynthesizer plugins for GIMP. Encompasses tools for healing selections (content aware fill), enlarging the canvas and healing the border, increasing the resolution while adding detail and transfering the style of an image.")
+   (license license:gpl3+)))
--
2.19.0


--
Thorsten Wilms

thorwil's design for free software:
http://thorwil.wordpress.com/



--- End Message ---
--- Begin Message --- Subject: Re: [bug#32976] [PATCH] * gnu/packages/gimp.scm (gimp-resynthesizer): New variable. Date: Mon, 08 Oct 2018 23:22:05 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)
Thorsten Wilms <address@hidden> skribis:

> ---
>  gnu/packages/gimp.scm | 61 +++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 61 insertions(+)

Applied with the changes below.

Thanks!

Ludo'.

diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index 2e74f3128..cd0deac15 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -319,9 +319,11 @@ MyPaint.")
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/bootchk/resynthesizer/archive/v";
-                        version
-                        ".tar.gz"))
-     (sha256 (base32 "0l3404w6rqny7h3djskxf149gzx6x4qhndgbh3403c9lbh4pi1kr"))))
+                          version ".tar.gz"))
+       (sha256
+        (base32
+         "0l3404w6rqny7h3djskxf149gzx6x4qhndgbh3403c9lbh4pi1kr"))
+       (file-name (string-append name "-" version ".tar.gz"))))
     (build-system gnu-build-system)
     (arguments
      `( ;; Turn off tests to avoid:
@@ -334,20 +336,19 @@ MyPaint.")
             (setenv "CONFIG_SHELL" (which "sh"))
             #t))
         (add-after 'configure 'set-prefix
-         ;; Attempt to install to GIMP's plugin directory will fail.
-         ;; Use own store address.
+           ;; Install plugin under $prefix, not under GIMP's libdir.
            (lambda* (#:key outputs #:allow-other-keys)
              (let ((target (string-append (assoc-ref outputs "out")
                                           "/lib/gimp/"
-                                         (car (string-split ,(package-version 
gimp) #\.))
+                                          ,(version-major
+                                            (package-version gimp))
                                           ".0")))
                (substitute* (list "src/resynthesizer/Makefile"
                                  "src/resynthesizer-gui/Makefile")
                 (("GIMP_LIBDIR = .*")
                   (string-append "GIMP_LIBDIR = " target "\n")))
-              (mkdir-p target))
-            #t))
-       )))
+               (mkdir-p target)
+               #t))))))
     (native-inputs
      `(("autoconf" ,autoconf-wrapper)
        ("automake" ,automake)
@@ -364,5 +365,8 @@ MyPaint.")
     (home-page "https://github.com/bootchk/resynthesizer";)
     (synopsis "GIMP plugins for texture synthesis")
     (description
-    "Resynthesizer plugins for GIMP. Encompasses tools for healing selections 
(content aware fill), enlarging the canvas and healing the border, increasing 
the resolution while adding detail and transfering the style of an image.")
+     "This package provides resynthesizer plugins for GIMP, which encompasses
+tools for healing selections (content-aware fill), enlarging the canvas and
+healing the border, increasing the resolution while adding detail, and
+transfering the style of an image.")
     (license license:gpl3+)))

--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]